mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
540 B
12 lines
540 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const punycode = require('punycode');
|
||
|
|
||
|
// This test verifies that line numbers in core modules are reported correctly.
|
||
|
// The punycode module was chosen for testing because it changes infrequently.
|
||
|
// If this test begins failing, it is likely due to a punycode update, and the
|
||
|
// test's assertions simply need to be updated to reflect the changes. If a
|
||
|
// punycode update was not made, and this test begins failing, then line numbers
|
||
|
// are probably actually broken.
|
||
|
punycode.decode('x');
|