Adding team testing

stable
Alejandro Alonso 2015-07-22 12:01:54 +02:00 committed by Juanfran
parent 0e774a4fa3
commit 4448c59047
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@ var chaiAsPromised = require('chai-as-promised');
chai.use(chaiAsPromised);
var expect = chai.expect;
describe.only('taskboard', function() {
describe('taskboard', function() {
before(async function() {
browser.get('http://localhost:9001/project/user7-project-example-0/backlog');
await utils.common.waitLoader();

View File

@ -1,2 +1,3 @@
module.exports.backlog = require("./backlog-helper");
module.exports.taskboard = require("./taskboard-helper");
module.exports.team = require("./team-helper");