mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
31 lines
509 B
JavaScript
31 lines
509 B
JavaScript
|
|
exports.config = {
|
|
|
|
groupId: 'ionic2',
|
|
|
|
appId: 'snapshots',
|
|
|
|
domain: 'ionic-snapshot-go.appspot.com',
|
|
//domain: 'localhost:8080',
|
|
|
|
specs: 'dist/e2e/**/*e2e.js',
|
|
//specs: 'dist/e2e/switch/basic/*e2e.js',
|
|
|
|
sleepBetweenSpecs: 1500,
|
|
|
|
platformDefauls: {
|
|
browser: 'chrome',
|
|
platform: 'linux',
|
|
params: {
|
|
platform_id: 'chrome_400x800',
|
|
platform_index: 0,
|
|
platform_count: 1,
|
|
width: 400,
|
|
height: 800
|
|
}
|
|
},
|
|
|
|
accessKey: process.env.IONIC_SNAPSHOT_KEY
|
|
|
|
};
|