UNPKG
node_hello_world
Version:
latest (0.0.2)
0.0.2
0.0.1
return Hello world
node_hello_world
/
test
/
test.js
7 lines
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
assert =
require
(
"assert"
);
var
foo =
require
(
'../index'
);
describe
(
'hello world'
,
function
(
) {
it
(
'should return "hello world"'
,
function
(
) { assert.
equal
(
foo
(),
'Hello World'
); }); });