provide the list of specs to enforce their execution order

proper formatting
This commit is contained in:
Adina Parpalita
2017-11-08 16:16:18 +02:00
parent 5a28a7fcab
commit 9632f57e5e

View File

@@ -10,7 +10,12 @@ const projectRoot = path.resolve(__dirname);
exports.config = { exports.config = {
allScriptsTimeout: 11000, allScriptsTimeout: 11000,
specs: [ specs: [
'./e2e/**/*.test.ts' './e2e/suites/authentication/*.test.ts',
'./e2e/suites/list-views/*.test.ts',
'./e2e/suites/application/page-titles.test.ts',
'./e2e/suites/navigation/side-navigation.test.ts',
'./e2e/suites/pagination/pagination.test.ts',
'./e2e/suites/actions/*.test.ts'
], ],
capabilities: { capabilities: {
'browserName': 'chrome', 'browserName': 'chrome',
@@ -22,7 +27,7 @@ exports.config = {
}, },
directConnect: true, directConnect: true,
baseUrl: 'http://localhost:3000', baseUrl: 'http://localhost:3000',
framework: 'jasmine', framework: 'jasmine2',
jasmineNodeOpts: { jasmineNodeOpts: {
showColors: true, showColors: true,
defaultTimeoutInterval: 30000, defaultTimeoutInterval: 30000,