forked from LeenkxTeam/Kmake
11 lines
291 B
JavaScript
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());
|