fix(core): update
This commit is contained in:
@ -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 () => {
|
||||
|
Reference in New Issue
Block a user