Files
DiceCloud/app/tests/mocha/server/sampleServerTest.js
2018-05-21 14:21:07 +02: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);
});
});
});
}