update to angular 2.0.0-alpha.44

This commit is contained in:
Adam Bradley
2015-10-16 09:07:59 -05:00
parent d9e19d38ff
commit 79e881232c
2 changed files with 8 additions and 2 deletions

View File

@ -11,8 +11,8 @@
"link": "npm install && gulp src && npm link"
},
"dependencies": {
"angular2": "2.0.0-alpha.42",
"@reactivex/rxjs": "0.0.0-prealpha.3",
"angular2": "2.0.0-alpha.44",
"@reactivex/rxjs": "5.0.0-alpha.4",
"reflect-metadata": "0.1.1",
"zone.js": "0.5.8"
},

View File

@ -34,6 +34,12 @@ module.exports = function(gulp, argv, buildConfig) {
});
function snapshot(done, quickMode) {
if (!snapshotConfig.accessKey || !snapshotConfig.accessKey.length) {
console.error('Missing IONIC_SNAPSHOT_KEY environment variable');
return done();
}
var testId = uuid.v4().split('-')[0];
var protractorConfigFile = path.resolve(projectRoot, 'scripts/snapshot/protractor.config.js');