fix(core): update

This commit is contained in:
2023-06-11 22:16:28 +02:00
parent 90d722de00
commit aefa8795dd
14 changed files with 4536 additions and 1735 deletions

View File

@ -1,14 +1,14 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmanifest from '../ts/index';
import * as smartmanifest from '../ts/index.js';
let testSmartManifest: smartmanifest.SmartManifest;
tap.test('first test', async () => {
testSmartManifest = new smartmanifest.SmartManifest({
name: 'test app',
short_name: 'app'
short_name: 'app',
});
expect(testSmartManifest).to.be.instanceOf(smartmanifest.SmartManifest);
expect(testSmartManifest).toBeInstanceOf(smartmanifest.SmartManifest);
});
tap.test('should produce a web app manifest', async () => {