test
Version:
Node.js 18's node:test, as an npm package
44 lines (41 loc) • 900 B
JavaScript
// https://github.com/nodejs/node/blob/1aab13cad9c800f4121c1d35b554b78c1b17bdbd/test/parallel/test-runner-test-filter.js
// Flags: --expose-internals
require('../common')
const assert = require('assert')
const { doesPathMatchFilter } = require('#internal/test_runner/utils');
// Paths expected to match
[
'test.js',
'test.cjs',
'test.mjs',
'test-foo.js',
'test-foo.cjs',
'test-foo.mjs',
'foo.test.js',
'foo.test.cjs',
'foo.test.mjs',
'foo-test.js',
'foo-test.cjs',
'foo-test.mjs',
'foo_test.js',
'foo_test.cjs',
'foo_test.mjs'
].forEach((p) => {
assert.strictEqual(doesPathMatchFilter(p), true)
});
// Paths expected not to match
[
'test',
'test.djs',
'test.cs',
'test.mj',
'foo.js',
'test-foo.sj',
'test.foo.js',
'test_foo.js',
'testfoo.js',
'foo-test1.mjs'
].forEach((p) => {
assert.strictEqual(doesPathMatchFilter(p), false)
})