init sample test case newsfeed_spec

This commit is contained in:
Rodrigo Ramírez Norambuena
2017-02-20 08:19:36 -03:00
parent 6be5fac953
commit db87f9e15b
3 changed files with 603 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
const globalSetup = require("../global-setup");
const app = globalSetup.app;
const chai = require("chai");
const expect = chai.expect;
describe("Newsfeed module", function () {
this.timeout(20000);
beforeEach(function (done) {
app.start().then(function() { done(); } );
});
afterEach(function (done) {
app.stop().then(function() { done(); });
});
describe("Default configuration", function() {
before(function() {
// Set config sample for use in test
process.env.MM_CONFIG_FILE = "tests/configs/modules/newsfeed/default.js";
});
it("Check here", function () {
return app.client.waitUntilTextExists(".newsfeed .small", "New York Times, in day:", 10000);
});
});
});