node/test/message/internal_assert.js
Joyee Cheung b9f1e57201
lib: throw a special error in internal/assert
Instead of using the public AssertionError, use a simplified
error that describes potential causes of these assertions
and suggests the user to open an issue.

PR-URL: https://github.com/nodejs/node/pull/26635
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2019-04-25 01:29:48 +02:00

8 lines
125 B
JavaScript

'use strict';
// Flags: --expose-internals
require('../common');
const assert = require('internal/assert');
assert(false);