Skip to content

Commit 9467095

Browse files
Update ts test
1 parent 98df0fd commit 9467095

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ts-tests/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
*/
1313

1414
import { SplitFactory } from '../types/index';
15+
import { SplitFactory as SplitFactoryCS } from '../types/client';
16+
import { SplitFactory as SplitFactorySS } from '../types/server';
1517

1618
let stringPromise: Promise<string>;
1719
let splitNamesPromise: Promise<SplitIO.SplitNames>;
@@ -166,6 +168,9 @@ browserSettings = {
166168
SDK = SplitFactory(nodeSettings);
167169
AsyncSDK = SplitFactory(asyncSettings);
168170
BrowserSDK = SplitFactory(browserSettings);
171+
SDK = SplitFactorySS(nodeSettings);
172+
AsyncSDK = SplitFactorySS(asyncSettings);
173+
BrowserSDK = SplitFactoryCS(browserSettings);
169174

170175
// The settings values the SDK expose.
171176
const instantiatedSettingsCore: {

0 commit comments

Comments
 (0)