fix(core): update

This commit is contained in:
2023-06-22 13:32:43 +02:00
parent ae2aabaa86
commit 4ba34a4b88
7 changed files with 4296 additions and 13911 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/tapbundle',
version: '5.0.6',
version: '5.0.7',
description: 'tap bundled for tapbuffer'
}

View File

@ -1,8 +1,8 @@
import * as plugins from './tapbundle.plugins.js';
import { IPreTaskFunction, PreTask } from './tapbundle.classes.pretask.js';
import { TapTest, ITestFunction } from './tapbundle.classes.taptest.js';
export class Tap <T> {
import { type IPreTaskFunction, PreTask } from './tapbundle.classes.pretask.js';
import { TapTest, type ITestFunction } from './tapbundle.classes.taptest.js';
export class Tap<T> {
/**
* skips a test
* tests marked with tap.skip.test() are never executed

View File

@ -15,7 +15,7 @@ class WebHelpers {
public enable() {
tap.preTask('enable webhelpers', async () => {
const webhelpers = await import('@open-wc/testing')
const webhelpers = await import('@open-wc/testing');
this.html = webhelpers.html;
this.fixture = webhelpers.fixture;
})