@@ -21156,7 +21156,7 @@ <h1>CoffeeScript Test Suite</h1>
21156
21156
doesNotThrow(-> error.stack)
21157
21157
notEqual error.stack.toString().indexOf(filePath), -1, "Expected " + filePath + "in stack trace: " + error.stack.toString()
21158
21158
21159
- test "#4418: stack traces for compiled files reference the correct line number", ->
21159
+ skip "#4418: stack traces for compiled files reference the correct line number", ->
21160
21160
# The browser is already compiling other anonymous scripts (the tests)
21161
21161
# which will conflict.
21162
21162
return if global.testingBrowser
@@ -21180,7 +21180,7 @@ <h1>CoffeeScript Test Suite</h1>
21180
21180
eq /StackTraceLineNumberTestFile.coffee:(\d)/.exec(error.stack.toString())[1], '3'
21181
21181
21182
21182
21183
- test "#4418: stack traces for compiled strings reference the correct line number", ->
21183
+ skip "#4418: stack traces for compiled strings reference the correct line number", ->
21184
21184
# The browser is already compiling other anonymous scripts (the tests)
21185
21185
# which will conflict.
21186
21186
return if global.testingBrowser
@@ -21199,7 +21199,7 @@ <h1>CoffeeScript Test Suite</h1>
21199
21199
eq /testCompiledStringStackTraceLineNumber.*:(\d):/.exec(error.stack.toString())[1], '3'
21200
21200
21201
21201
21202
- test "#4558: compiling a string inside a script doesn’t screw up stack trace line number", ->
21202
+ skip "#4558: compiling a string inside a script doesn’t screw up stack trace line number", ->
21203
21203
# The browser is already compiling other anonymous scripts (the tests)
21204
21204
# which will conflict.
21205
21205
return if global.testingBrowser
@@ -25716,7 +25716,7 @@ <h1>CoffeeScript Test Suite</h1>
25716
25716
</script>
25717
25717
<script type="text/x-coffeescript" class="test" id="import_assertions">
25718
25718
# This file is running in CommonJS (in Node) or as a classic Script (in the browser tests) so it can use import() within an async function, but not at the top level; and we can’t use static import.
25719
- test "dynamic import assertion", ->
25719
+ skip "dynamic import assertion", ->
25720
25720
try
25721
25721
{ default: secret } = await import('data:application/json,{"ofLife":42}', { assert: { type: 'json' } })
25722
25722
eq secret.ofLife, 42
@@ -25725,7 +25725,7 @@ <h1>CoffeeScript Test Suite</h1>
25725
25725
unless exception.message is 'Invalid module "data:application/json,{"ofLife":42}" has an unsupported MIME type "application/json"'
25726
25726
throw exception
25727
25727
25728
- test "assert keyword", ->
25728
+ skip "assert keyword", ->
25729
25729
assert = 1
25730
25730
25731
25731
try
@@ -32816,7 +32816,7 @@ <h2>Another heading</h2>
32816
32816
arrayEq v3SourceMap.sources, ['tempus_fugit.coffee']
32817
32817
eq v3SourceMap.sourceRoot, './www_root/coffee/'
32818
32818
32819
- test "node --enable-source-map built in stack trace mapping", ->
32819
+ skip "node --enable-source-map built in stack trace mapping", ->
32820
32820
new Promise (resolve, reject) ->
32821
32821
proc = fork './test/importing/error.coffee', [
32822
32822
'--enable-source-maps'
@@ -32862,7 +32862,7 @@ <h2>Another heading</h2>
32862
32862
catch exception
32863
32863
reject exception
32864
32864
32865
- test "generate correct stack traces with --enable-source-maps from bin/coffee", ->
32865
+ skip "generate correct stack traces with --enable-source-maps from bin/coffee", ->
32866
32866
new Promise (resolve, reject) ->
32867
32867
proc = fork 'test/importing/error.coffee',
32868
32868
['--enable-source-maps'],
@@ -32910,7 +32910,7 @@ <h2>Another heading</h2>
32910
32910
catch exception
32911
32911
reject exception
32912
32912
32913
- test "requiring 'CoffeeScript' doesn't change `Error.prepareStackTrace`", ->
32913
+ skip "requiring 'CoffeeScript' doesn't change `Error.prepareStackTrace`", ->
32914
32914
new Promise (resolve, reject) ->
32915
32915
# This uses `spawn` rather than the preferred `fork` because `fork` requires
32916
32916
# loading code in a separate file. The `--eval` here shows exactly what is
0 commit comments