webconfig/test/test.ts

16 lines
345 B
TypeScript
Raw Normal View History

2018-12-27 21:28:19 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as webconfig from '../ts/index';
let testConfig: webconfig.WebConfig;
tap.test('first test', async () => {
testConfig = new webconfig.WebConfig({
name: 'Test Name',
description: 'a description for testing',
fsCode: '1234',
gaCode: '123456'
});
});
tap.start();