mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-15 07:46:06 +10:00
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
var vows = require('../lib/vows'),
|
|
assert = require('assert');
|
|
|
|
vows.describe("Vows test file with camel case").addBatch({
|
|
|
|
"The test file": {
|
|
topic: function () {
|
|
return { flag: true };
|
|
},
|
|
"is run": function (topic) {
|
|
assert.isTrue(topic.flag);
|
|
}
|
|
}
|
|
}).export(module);
|