We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e3b661 commit 7ce4579Copy full SHA for 7ce4579
test/other-test.js
@@ -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