mirror of
https://github.com/nodejs/node.git
synced 2025-08-17 06:38:47 +02:00

PR-URL: https://github.com/nodejs/node/pull/46371 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
18 lines
465 B
JavaScript
18 lines
465 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
process.env.NODE_DISABLE_COLORS = true;
|
|
process.stderr.columns = 20;
|
|
|
|
// Confirm that there is no position indicator.
|
|
assert.throws(
|
|
() => { assert.strictEqual('a'.repeat(30), 'a'.repeat(31)); },
|
|
(err) => !err.message.includes('^'),
|
|
);
|
|
|
|
// Confirm that there is a position indicator.
|
|
assert.throws(
|
|
() => { assert.strictEqual('aaaa', 'aaaaa'); },
|
|
(err) => err.message.includes('^'),
|
|
);
|