Files
opensourcepos/test/create_item.js
2015-04-06 15:13:36 +02:00

12 lines
335 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(wd, undefined);
});
});