PR-URL: https://github.com/nodejs/node/pull/52529 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
10 lines
291 B
JavaScript
10 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());
|