chore(build): fix flakiness of the element probe global test

This commit is contained in:
mlaval 2015-11-26 19:38:14 +01:00 committed by Jeremy Elbourn
parent 62c2ed7c43
commit fb16c39496
4 changed files with 4 additions and 4 deletions

View File

@ -354,7 +354,7 @@ export function setValueOnPath(global: any, path: string, value: any) {
var obj: any = global; var obj: any = global;
while (parts.length > 1) { while (parts.length > 1) {
var name = parts.shift(); var name = parts.shift();
if (obj.hasOwnProperty(name)) { if (obj.hasOwnProperty(name) && isPresent(obj[name])) {
obj = obj[name]; obj = obj[name];
} else { } else {
obj = obj[name] = {}; obj = obj[name] = {};

View File

@ -23,5 +23,5 @@ export function enableDebugTools(ref: ComponentRef): void {
* Disables Angular 2 tools. * Disables Angular 2 tools.
*/ */
export function disableDebugTools(): void { export function disableDebugTools(): void {
context.ng = undefined; delete context.ng;
} }

View File

@ -68,7 +68,7 @@ export function main() {
async.done(); async.done();
}); });
}), 10000); }), 1000);
} }
}); });
} }