mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
23 lines
496 B
JavaScript
23 lines
496 B
JavaScript
// An example configuration file.
|
|
exports.config = {
|
|
|
|
// Spec patterns are relative to the location of the spec file. They may
|
|
// include glob patterns.
|
|
specs: ['../test/e2e/**/*.js'],
|
|
|
|
// Options to be passed to Jasmine-node.
|
|
jasmineNodeOpts: {
|
|
showColors: true, // Use colors in the command line report.
|
|
defaultTimeoutInterval: 120000
|
|
},
|
|
|
|
baseUrl: 'http://localhost:8080',
|
|
|
|
//local build: chrome
|
|
chromeOnly: true,
|
|
capabilities: {
|
|
'browserName': 'chrome'
|
|
}
|
|
};
|
|
|