Files
Kmake/test/parallel/test-internal-assert.js

14 lines
307 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
// Flags: --expose-internals
'use strict';
// This tests that the internal assert module works as expected.
// The failures are tested in test/message.
require('../common');
const internalAssert = require('internal/assert');
// Should not throw.
internalAssert(true);
internalAssert(true, 'fhqwhgads');