11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { tap } from '@git.zone/tstest/tapbundle';
|
|
import { CloudlyApiClient } from '../ts/index.js';
|
|
|
|
tap.test('exports CloudlyApiClient', async () => {
|
|
if (typeof CloudlyApiClient !== 'function') {
|
|
throw new Error('CloudlyApiClient is not exported');
|
|
}
|
|
});
|
|
|
|
export default tap.start();
|