Files
Kmake/test/fixtures/test-runner/output/name_and_skip_patterns.js
2026-05-26 23:36:42 -07:00

11 lines
291 B
JavaScript

// Flags: --test-skip-pattern=disabled --test-name-pattern=enabled
'use strict';
const common = require('../../../common');
const {
test,
} = require('node:test');
test('disabled', common.mustNotCall());
test('enabled', common.mustCall());
test('enabled disabled', common.mustNotCall());