10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
if (!(typeof MochaWeb === 'undefined')){
|
|
MochaWeb.testOnly(function(){
|
|
describe("a group of tests", function(){
|
|
it("should respect equality", function(){
|
|
chai.assert.equal(5,5);
|
|
});
|
|
});
|
|
});
|
|
}
|