Skip to content

Commit 7ce4579

Browse files
author
cloudhead
committed
another test, just to test runner
1 parent 0e3b661 commit 7ce4579

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/other-test.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
var path = require('path');
2+
3+
require.paths.unshift(path.join(__dirname, '..', 'lib'));
4+
5+
var assert = require('assert');
6+
var vows = require('vows');
7+
8+
vows.describe("Vows/other").addVows({
9+
"Another test": {
10+
topic: true,
11+
"exists in the test/ folder!": function (topic) {
12+
assert.ok (topic);
13+
}
14+
}
15+
}).export(this);

0 commit comments

Comments
 (0)