From 3cf79b7600f647cf72f223442f2883b2bd108284 Mon Sep 17 00:00:00 2001
From: Perreal Guillaume <guillaume.perreal@irstea.fr>
Date: Thu, 10 Oct 2019 10:13:48 +0200
Subject: [PATCH] Load all sources when testing.

---
 src/index.ts | 2 ++
 src/test.ts  | 4 ++++
 2 files changed, 6 insertions(+)
 create mode 100644 src/index.ts

diff --git a/src/index.ts b/src/index.ts
new file mode 100644
index 0000000..1a3bb1c
--- /dev/null
+++ b/src/index.ts
@@ -0,0 +1,2 @@
+export * from './decorators';
+export * from './rxjs';
diff --git a/src/test.ts b/src/test.ts
index 8b5d2fa..709fcbe 100644
--- a/src/test.ts
+++ b/src/test.ts
@@ -8,6 +8,10 @@ import {
 import 'zone.js/dist/zone';
 import 'zone.js/dist/zone-testing';
 
+// Load all the sources
+import './hooks';
+import './index';
+
 declare const require: any;
 
 // First, initialize the Angular testing environment.
-- 
GitLab