diff --git a/test/sourcemaps/samples/existing-external-sourcemaps-combined/_config.js b/test/sourcemaps/samples/existing-external-sourcemaps-combined/_config.js index a377059f3ad..8426b4c0493 100644 --- a/test/sourcemaps/samples/existing-external-sourcemaps-combined/_config.js +++ b/test/sourcemaps/samples/existing-external-sourcemaps-combined/_config.js @@ -1,9 +1,9 @@ const assert = require('assert'); module.exports = { - description: 'combines existing inline sourcemap comments into one', + description: 'removes existing inline sourcemaps', async test(code) { assert.doesNotMatch(code, /sourceMappingURL=main\.js\.map/); assert.doesNotMatch(code, /sourceMappingURL=other\.js\.map/); - }, + } };