From c24fa13ce418de6b320f9d475c5ce5c2e7798feb Mon Sep 17 00:00:00 2001 From: vsavkin Date: Fri, 11 Aug 2017 14:41:47 -0400 Subject: [PATCH] move testing utils into @nrwl/nx/testing --- src/index.ts | 2 -- .../files/+state/__fileName__.effects.spec.ts__tmpl__ | 2 +- src/testing.ts | 2 ++ 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 95af257bdf..e69de29bb2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +0,0 @@ -export { readAll } from './utils/testing'; -export { hot, cold } from 'jasmine-marbles'; diff --git a/src/schematics/addNgRxToModule/files/+state/__fileName__.effects.spec.ts__tmpl__ b/src/schematics/addNgRxToModule/files/+state/__fileName__.effects.spec.ts__tmpl__ index d5c965509d..cc0aa2faec 100644 --- a/src/schematics/addNgRxToModule/files/+state/__fileName__.effects.spec.ts__tmpl__ +++ b/src/schematics/addNgRxToModule/files/+state/__fileName__.effects.spec.ts__tmpl__ @@ -1,5 +1,5 @@ import {Actions} from '@ngrx/effects'; -import {readAll, hot} from '@nrwl/nx'; +import {readAll, hot} from '@nrwl/nx/testing'; import {<%= className %>Effects} from './<%= fileName %>.effects'; import {of} from 'rxjs/observable/of'; diff --git a/src/testing.ts b/src/testing.ts index e69de29bb2..95af257bdf 100644 --- a/src/testing.ts +++ b/src/testing.ts @@ -0,0 +1,2 @@ +export { readAll } from './utils/testing'; +export { hot, cold } from 'jasmine-marbles';