rename integrationSpec to e2e

stable
Juanfran 2015-06-25 08:02:05 +02:00
parent 43f1732122
commit 05290fbb04
10 changed files with 6 additions and 6 deletions

2
.gitignore vendored
View File

@ -14,4 +14,4 @@ tmp/
app/config/main.coffee
app/plugins/taiga-front-extras
scss-lint.log
integration/screenshots/
e2e/screenshots/

View File

@ -2,7 +2,7 @@ require("babel/register")({
stage: 1
});
var utils = require('./integration/utils');
var utils = require('./e2e/utils');
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
@ -11,8 +11,8 @@ exports.config = {
timeout: 5000
},
suites: {
auth: 'integration/auth/*.integrationSpec.js',
full: 'integration/full/**/*integrationSpec.js'
auth: 'e2e/auth/*.e2e.js',
full: 'e2e/full/**/*.e2e.js'
},
onPrepare: function() {
browser.get('http://localhost:9001/login');

View File

@ -20,7 +20,7 @@ describe('project home', function() {
});
it('timeline filled', function() {
return expect($$('div[tg-user-timeline-item]').count()).to.be.eventually.above(0);
expect($$('div[tg-user-timeline-item]').count()).to.be.eventually.above(0);
});
it('timeline pagination', async function() {
@ -37,6 +37,6 @@ describe('project home', function() {
});
it('team filled', function() {
return expect($$('ul.involved-team a').count()).to.be.eventually.above(0);
expect($$('ul.involved-team a').count()).to.be.eventually.above(0);
});
});