move testing utils into @nrwl/nx/testing

This commit is contained in:
vsavkin 2017-08-11 14:41:47 -04:00
parent 9065ab3dc1
commit c24fa13ce4
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +0,0 @@
export { readAll } from './utils/testing';
export { hot, cold } from 'jasmine-marbles';

View File

@ -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';

View File

@ -0,0 +1,2 @@
export { readAll } from './utils/testing';
export { hot, cold } from 'jasmine-marbles';