Files
DiceCloud/app/tests/mocha/server/sampleServerTest.js
2018-06-07 01:07:49 -07:00

10 lines
247 B
JavaScript

if (!(typeof MochaWeb === 'undefined')){
MochaWeb.testOnly(function(){
describe("Server initialization", function(){
it("should have a Meteor version defined", function(){
chai.assert(Meteor.release);
});
});
});
}