10 lines
247 B
JavaScript
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);
|
|
});
|
|
});
|
|
});
|
|
}
|