Files
DiceCloud/rpg-docs/tests/mocha/server/sampleServerTest.js
2014-11-25 15:06:30 +00: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);
});
});
});
}