UNPKG

state-switch

Version:

State Switch is a Change Monitor/Guarder for Async Actions.

13 lines 495 B
#!/usr/bin/env -S node --no-warnings --loader ts-node/esm import { StateSwitch } from './state-switch.js'; import { test } from 'tstest'; import { BusyIndicator } from './busy-indicator.js'; test('StateSwitchInterface', async (t) => { const ss = new StateSwitch(); t.ok(typeof ss, 'should no typing error'); }); test('BusyIndicatorInterface', async (t) => { const bi = new BusyIndicator(); t.ok(typeof bi, 'should no typing error'); }); //# sourceMappingURL=interface.spec.js.map