Set e2e tests

This commit is contained in:
Maxime GRIS
2017-05-06 00:45:37 +02:00
parent c434f8a8b0
commit d2239745a2
4 changed files with 16 additions and 5 deletions

8
src/typings.d.ts vendored
View File

@@ -1,5 +1,11 @@
/* SystemJS module definition */
declare var module: NodeModule;
declare var nodeModule: NodeModule;
interface NodeModule {
id: string;
}
declare var window: Window;
interface Window {
process: any;
require: any;
}