@@ -21156,7 +21156,7 @@ <h1>CoffeeScript Test Suite</h1>
2115621156 doesNotThrow(-> error.stack)
2115721157 notEqual error.stack.toString().indexOf(filePath), -1, "Expected " + filePath + "in stack trace: " + error.stack.toString()
2115821158
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", ->
2116021160 # The browser is already compiling other anonymous scripts (the tests)
2116121161 # which will conflict.
2116221162 return if global.testingBrowser
@@ -21180,7 +21180,7 @@ <h1>CoffeeScript Test Suite</h1>
2118021180 eq /StackTraceLineNumberTestFile.coffee:(\d)/.exec(error.stack.toString())[1], '3'
2118121181
2118221182
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", ->
2118421184 # The browser is already compiling other anonymous scripts (the tests)
2118521185 # which will conflict.
2118621186 return if global.testingBrowser
@@ -21199,7 +21199,7 @@ <h1>CoffeeScript Test Suite</h1>
2119921199 eq /testCompiledStringStackTraceLineNumber.*:(\d):/.exec(error.stack.toString())[1], '3'
2120021200
2120121201
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", ->
2120321203 # The browser is already compiling other anonymous scripts (the tests)
2120421204 # which will conflict.
2120521205 return if global.testingBrowser
@@ -25716,7 +25716,7 @@ <h1>CoffeeScript Test Suite</h1>
2571625716</script>
2571725717<script type="text/x-coffeescript" class="test" id="import_assertions">
2571825718# 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", ->
2572025720 try
2572125721 { default: secret } = await import('data:application/json,{"ofLife":42}', { assert: { type: 'json' } })
2572225722 eq secret.ofLife, 42
@@ -25725,7 +25725,7 @@ <h1>CoffeeScript Test Suite</h1>
2572525725 unless exception.message is 'Invalid module "data:application/json,{"ofLife":42}" has an unsupported MIME type "application/json"'
2572625726 throw exception
2572725727
25728- test "assert keyword", ->
25728+ skip "assert keyword", ->
2572925729 assert = 1
2573025730
2573125731 try
@@ -32816,7 +32816,7 @@ <h2>Another heading</h2>
3281632816 arrayEq v3SourceMap.sources, ['tempus_fugit.coffee']
3281732817 eq v3SourceMap.sourceRoot, './www_root/coffee/'
3281832818
32819- test "node --enable-source-map built in stack trace mapping", ->
32819+ skip "node --enable-source-map built in stack trace mapping", ->
3282032820 new Promise (resolve, reject) ->
3282132821 proc = fork './test/importing/error.coffee', [
3282232822 '--enable-source-maps'
@@ -32862,7 +32862,7 @@ <h2>Another heading</h2>
3286232862 catch exception
3286332863 reject exception
3286432864
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", ->
3286632866 new Promise (resolve, reject) ->
3286732867 proc = fork 'test/importing/error.coffee',
3286832868 ['--enable-source-maps'],
@@ -32910,7 +32910,7 @@ <h2>Another heading</h2>
3291032910 catch exception
3291132911 reject exception
3291232912
32913- test "requiring 'CoffeeScript' doesn't change `Error.prepareStackTrace`", ->
32913+ skip "requiring 'CoffeeScript' doesn't change `Error.prepareStackTrace`", ->
3291432914 new Promise (resolve, reject) ->
3291532915 # This uses `spawn` rather than the preferred `fork` because `fork` requires
3291632916 # loading code in a separate file. The `--eval` here shows exactly what is
0 commit comments