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.
13 lines
308 B
13 lines
308 B
8 years ago
|
'use strict';
|
||
|
require('../common');
|
||
|
|
||
|
// Flags: --expose-internals
|
||
|
//
|
||
|
// This test ensures that UTF-8 characters can be used in core JavaScript
|
||
|
// libraries built into Node's binary.
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const character = require('internal/test/unicode');
|
||
|
|
||
|
assert.strictEqual(character, '✓');
|