diff --git a/test/fixtures/v8/v8_warning.js b/test/fixtures/v8/v8_warning.js deleted file mode 100644 index ab4d2bf305823f..00000000000000 --- a/test/fixtures/v8/v8_warning.js +++ /dev/null @@ -1,19 +0,0 @@ -'use strict'; - -require('../../common'); - -function AsmModule() { - 'use asm'; - - function add(a, b) { - a = a | 0; - b = b | 0; - - // Should be `return (a + b) | 0;` - return a + b; - } - - return { add: add }; -} - -AsmModule(); diff --git a/test/fixtures/v8/v8_warning.snapshot b/test/fixtures/v8/v8_warning.snapshot deleted file mode 100644 index 87c7c86b4fedeb..00000000000000 --- a/test/fixtures/v8/v8_warning.snapshot +++ /dev/null @@ -1,2 +0,0 @@ -(node:) V8: /test/fixtures/v8/v8_warning.js:13 Invalid asm.js: Invalid return type -(Use ` --trace-warnings ...` to show where the warning was created) diff --git a/test/parallel/test-node-output-v8-warning.mjs b/test/parallel/test-node-output-v8-warning.mjs deleted file mode 100644 index 43f6709dc248c7..00000000000000 --- a/test/parallel/test-node-output-v8-warning.mjs +++ /dev/null @@ -1,15 +0,0 @@ -import '../common/index.mjs'; -import * as fixtures from '../common/fixtures.mjs'; -import * as snapshot from '../common/assertSnapshot.js'; -import { describe, it } from 'node:test'; - -describe('v8 output', { concurrency: !process.env.TEST_PARALLEL }, () => { - const tests = [ - { name: 'v8/v8_warning.js' }, - ]; - for (const { name } of tests) { - it(name, async () => { - await snapshot.spawnAndAssert(fixtures.path(name), snapshot.defaultTransform); - }); - } -});