Skip to content

Commit 1993c01

Browse files
cartantdavideast
authored andcommitted
test(root): use import syntax
Using the export syntax, Rollup generates an empty bundle.
1 parent 7d53bd2 commit 1993c01

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/test-root.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export * from './angularfire2.spec';
2-
export * from './database/firebase_list_factory.spec';
3-
export * from './database/firebase_object_factory.spec';
4-
export * from './database/firebase_list_observable.spec';
5-
export * from './database/firebase_object_observable.spec';
6-
export * from './database/query_observable.spec';
7-
export * from './auth/auth.spec';
8-
export * from './auth/auth_backend.spec';
1+
import './angularfire2.spec';
2+
import './database/firebase_list_factory.spec';
3+
import './database/firebase_object_factory.spec';
4+
import './database/firebase_list_observable.spec';
5+
import './database/firebase_object_observable.spec';
6+
import './database/query_observable.spec';
7+
import './auth/auth.spec';
8+
import './auth/auth_backend.spec';

0 commit comments

Comments
 (0)