Let about 300 non UI tests run

This commit is contained in:
PanayotCankov
2016-12-21 11:38:03 +02:00
parent 2580dcf575
commit 185b84e0ba
7 changed files with 33 additions and 30 deletions

View File

@@ -6,6 +6,8 @@ import { File, knownFolders, path } from "file-system";
export { File, knownFolders, path };
export * from "ui/core/view";
export const srcProperty = new Property<WebViewBase, string>({ name: "url" });
export abstract class WebViewBase extends View implements WebViewDefinition {
public static loadStartedEvent = "loadStarted";
public static loadFinishedEvent = "loadFinished";
@@ -103,5 +105,4 @@ export abstract class WebViewBase extends View implements WebViewDefinition {
}
}
export const srcProperty = new Property<WebViewBase, string>({ name: "url" });
srcProperty.register(WebViewBase);