BREAKING CHANGE(package): change scope

This commit is contained in:
2018-07-13 22:06:45 +02:00
parent 4306272f45
commit 63669ea6ff
5 changed files with 431 additions and 28 deletions

View File

@ -22,7 +22,7 @@ export class TapTest {
tapTools: TapTools;
testFunction: ITestFunction;
testKey: number; // the testKey the position in the test qeue. Set upon calling .run()
testDeferred: Deferred<TapTest> = plugins.smartq.defer();
testDeferred: Deferred<TapTest> = plugins.smartpromise.defer();
testPromise: Promise<TapTest> = this.testDeferred.promise;
/**
* constructor

View File

@ -1,6 +1,6 @@
import * as early from 'early';
import * as leakage from 'leakage';
import * as smartdelay from 'smartdelay';
import * as smartq from 'smartq';
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartpromise from '@pushrocks/smartpromise';
export { early, smartdelay, smartq, leakage };
export { early, smartdelay, smartpromise, leakage };