From 74af5a8361f4ccb460001706ce249d50c747f361 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 16 May 2018 19:59:21 +0200 Subject: Client E2E tests first step --- client/e2e/protractor.conf.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 client/e2e/protractor.conf.js (limited to 'client/e2e/protractor.conf.js') diff --git a/client/e2e/protractor.conf.js b/client/e2e/protractor.conf.js new file mode 100644 index 000000000..30705cb72 --- /dev/null +++ b/client/e2e/protractor.conf.js @@ -0,0 +1,29 @@ +// Protractor configuration file, see link for more information +// https://github.com/angular/protractor/blob/master/lib/config.ts + +const {SpecReporter} = require('jasmine-spec-reporter') + +exports.config = { + allScriptsTimeout: 11000, + specs: [ + './src/**/*.e2e-spec.ts' + ], + capabilities: { + 'browserName': 'chrome' + }, + directConnect: true, + baseUrl: 'http://localhost:4200/', + framework: 'jasmine', + jasmineNodeOpts: { + showColors: true, + defaultTimeoutInterval: 30000, + print: function () {} + }, + + onPrepare () { + require('ts-node').register({ + project: require('path').join(__dirname, './tsconfig.e2e.json') + }) + jasmine.getEnv().addReporter(new SpecReporter({spec: {displayStacktrace: true}})) + } +} -- cgit v1.2.3