mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-24 02:46:39 +00:00
* feature(integration): initial Angular framework implementation * Package cleanup * Actually add the components this time * fix rendering bug * Add documentation * dependency fixes * add broken example * Make locales ignore angular * dependency updates * Update package-lock.json * Fix broken example * Make example consistent with docs * angular: Update styling advice * angular: Build system stuff * angular: Escape dependency hell * angular: Add dashboard-modal component * angular: Update package.json/prepare for release * angular: Fix styling bugs * add Angular dependencies * Update README.md * lint fixes — those deps are in root * Update README.md Co-authored-by: Adam Medford <adammedford@gmail.com> Co-authored-by: Artur Paikin <artur@arturpaikin.com>
38 lines
941 B
JavaScript
38 lines
941 B
JavaScript
// @ts-check
|
|
// Protractor configuration file, see link for more information
|
|
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
|
|
|
const { SpecReporter, StacktraceOption } = require('jasmine-spec-reporter')
|
|
|
|
/**
|
|
* @type { import("protractor").Config }
|
|
*/
|
|
exports.config = {
|
|
allScriptsTimeout: 11000,
|
|
specs: [
|
|
'./src/**/*.e2e-spec.ts',
|
|
],
|
|
capabilities: {
|
|
browserName: 'chrome',
|
|
},
|
|
directConnect: true,
|
|
SELENIUM_PROMISE_MANAGER: false,
|
|
baseUrl: 'http://localhost:4200/',
|
|
framework: 'jasmine',
|
|
jasmineNodeOpts: {
|
|
showColors: true,
|
|
defaultTimeoutInterval: 30000,
|
|
print () {},
|
|
},
|
|
onPrepare () {
|
|
require('ts-node').register({
|
|
project: require('path').join(__dirname, './tsconfig.json'),
|
|
})
|
|
// eslint-disable-next-line no-undef
|
|
jasmine.getEnv().addReporter(new SpecReporter({
|
|
spec: {
|
|
displayStacktrace: StacktraceOption.PRETTY,
|
|
},
|
|
}))
|
|
},
|
|
}
|