rename integrationSpec to e2e
parent
43f1732122
commit
05290fbb04
|
@ -14,4 +14,4 @@ tmp/
|
||||||
app/config/main.coffee
|
app/config/main.coffee
|
||||||
app/plugins/taiga-front-extras
|
app/plugins/taiga-front-extras
|
||||||
scss-lint.log
|
scss-lint.log
|
||||||
integration/screenshots/
|
e2e/screenshots/
|
|
@ -2,7 +2,7 @@ require("babel/register")({
|
||||||
stage: 1
|
stage: 1
|
||||||
});
|
});
|
||||||
|
|
||||||
var utils = require('./integration/utils');
|
var utils = require('./e2e/utils');
|
||||||
|
|
||||||
exports.config = {
|
exports.config = {
|
||||||
seleniumAddress: 'http://localhost:4444/wd/hub',
|
seleniumAddress: 'http://localhost:4444/wd/hub',
|
||||||
|
@ -11,8 +11,8 @@ exports.config = {
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
},
|
},
|
||||||
suites: {
|
suites: {
|
||||||
auth: 'integration/auth/*.integrationSpec.js',
|
auth: 'e2e/auth/*.e2e.js',
|
||||||
full: 'integration/full/**/*integrationSpec.js'
|
full: 'e2e/full/**/*.e2e.js'
|
||||||
},
|
},
|
||||||
onPrepare: function() {
|
onPrepare: function() {
|
||||||
browser.get('http://localhost:9001/login');
|
browser.get('http://localhost:9001/login');
|
|
@ -20,7 +20,7 @@ describe('project home', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('timeline filled', 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() {
|
it('timeline pagination', async function() {
|
||||||
|
@ -37,6 +37,6 @@ describe('project home', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('team filled', 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);
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue