Files
opensourcepos/tests/sanity_check.js
objecttothis de531e20c6 Migrations
- Delete old CI3 file
- Correct format of Migrations file datetime
2024-06-15 17:19:15 +02:00

12 lines
350 B
JavaScript

var assert = require("assert"); // node.js core module
var wd = require('wd');
describe('A Mocha test run by grunt-mocha-webdriver', function () {
it('has a browser injected into it', function () {
assert.ok(this.browser);
});
it('has wd injected into it for customizing', function () {
assert.notEqual(this.wd, undefined);
});
});