summaryrefslogtreecommitdiff
path: root/test/index.spec.ts
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-20 13:51:06 +0300
committerValentin Popov <info@valentineus.link>2019-08-20 13:51:06 +0300
commit9c57d101f0181aa134190edb0b2e7aabdba1151f (patch)
tree41e2405204d001490ba76e272bc5d11020a2c357 /test/index.spec.ts
parentb3461bdcc0462bda7fad46b02f8307a0bc1166cd (diff)
downloadelectron-hot-reload-9c57d101f0181aa134190edb0b2e7aabdba1151f.tar.xz
electron-hot-reload-9c57d101f0181aa134190edb0b2e7aabdba1151f.zip
Added example application
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'test/index.spec.ts')
-rw-r--r--test/index.spec.ts18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/index.spec.ts b/test/index.spec.ts
deleted file mode 100644
index c2d5208..0000000
--- a/test/index.spec.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-import path from "path";
-// tslint:disable-next-line: no-implicit-dependencies
-import { Application } from "spectron";
-
-const applicationPath: string = path.join(__dirname, "application");
-const electronPath: string = path.join(__dirname, "application", "node_modules", ".bin", "electron");
-
-describe("RendererReloader", () => {
- it("start() / stop()", async () => {
- const app: Application = new Application({
- args: [applicationPath],
- path: electronPath,
- });
-
- await app.start();
- await app.stop();
- });
-});