You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
before(function(done) {
|
|
this.timeout(0);
|
|
var app = app || require("../app");
|
|
|
|
global.app = app;
|
|
done();
|
|
});
|
|
|
|
after(function(done) {
|
|
console.log();
|
|
console.log("--------------------");
|
|
console.log("Test Completely!!");
|
|
console.log("--------------------");
|
|
done();
|
|
});
|