1// Flags: --expose-internals
2'use strict';
3
4// This tests that the internal assert module works as expected.
5// The failures are tested in test/message.
6
7require('../common');
8
9const internalAssert = require('internal/assert');
10
11// Should not throw.
12internalAssert(true);
13internalAssert(true, 'fhqwhgads');
14