fix(core): update

This commit is contained in:
2018-12-27 22:28:19 +01:00
commit 4c4168fafd
9 changed files with 1860 additions and 0 deletions

15
test/test.ts Normal file
View File

@ -0,0 +1,15 @@
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();