webconfig/test/test.ts
2018-12-27 22:28:19 +01:00

16 lines
345 B
TypeScript

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();