mirror of
https://github.com/buildbot/buildbot.git
synced 2021-05-20 10:47:20 +03:00
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
const { SpecReporter } = require('jasmine-spec-reporter');
|
|
|
|
exports.config = {
|
|
// when running tests on a heavily loaded maching (which is the case on e.g. CI server),
|
|
// Buildbot master sometimes takes a lot of time to respond to certain queries during tests.
|
|
// The following timeout is increased to avoid test instabilities in such cases
|
|
allScriptsTimeout: 30000,
|
|
|
|
specs: [
|
|
'e2e/*.scenarios.ts'
|
|
],
|
|
|
|
SELENIUM_PROMISE_MANAGER: false,
|
|
|
|
localSeleniumStandaloneOpts: {
|
|
// undocumented option to pass the stdio output of selenium webdriver to
|
|
// console
|
|
stdio: "inherit",
|
|
},
|
|
|
|
capabilities: {
|
|
'browserName': 'chrome',
|
|
chromeOptions: {
|
|
// minimal supported browser size for tests
|
|
// if smaller we start need to scroll for clicking buttons
|
|
args: [
|
|
'--window-size=1200,1024',
|
|
'--user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/56.0.2924.87"',
|
|
]
|
|
}
|
|
},
|
|
|
|
baseUrl: 'http://localhost:8011',
|
|
|
|
framework: 'jasmine',
|
|
|
|
jasmineNodeOpts: {
|
|
// jasmine requires that whole test is completed within
|
|
// defaultTimeoutInterval. If we accidentally exceed this timeout,
|
|
// jasmine will not stop the execution of the test method, but will
|
|
// simply start afterEach() callback and fail the test. The test code
|
|
// will likely fail too as the page was pulled from under its feet.
|
|
// The test error messages will make the cause of the failure very
|
|
// confusing. Thus we increase the timeout value to one that hopefully
|
|
// will never be exceeded.
|
|
defaultTimeoutInterval: 1000000,
|
|
print: function() {}
|
|
},
|
|
|
|
onPrepare() {
|
|
jasmine.getEnv().addReporter(new SpecReporter({
|
|
spec: {
|
|
displayFailed: true,
|
|
displayDuration: true,
|
|
displayStacktrace: true
|
|
},
|
|
summary: {
|
|
displayFailed: true,
|
|
displayStacktrace: true
|
|
}
|
|
}));
|
|
|
|
require('ts-node').register({
|
|
project: './tsconfig.ee.json'
|
|
});
|
|
}
|
|
};
|