mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
CB-11869 Fix cordova-js android exec tests
Useragent Regexp result is null in node environment - add a check for it Updated cordova-js Increased e2e create specs timeout
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
|
||||
var actions = require('./helpers/projectActions.js');
|
||||
|
||||
var CREATE_TIMEOUT = 90000;
|
||||
var CREATE_TIMEOUT = 180000;
|
||||
|
||||
function createAndBuild(projectname, projectid, done) {
|
||||
actions.createProject(projectname, projectid, function (error) {
|
||||
@@ -27,7 +27,7 @@ function createAndBuild(projectname, projectid, done) {
|
||||
actions.buildProject(projectid, function (error) {
|
||||
expect(error).toBe(null);
|
||||
actions.removeProject(projectid);
|
||||
done();
|
||||
done();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user