tapbundle/ts/webhelpers.ts

26 lines
629 B
TypeScript
Raw Normal View History

2022-03-14 10:22:17 +00:00
import * as plugins from './tapbundle.plugins.js';
2021-02-13 16:02:40 +00:00
import type { fixture, html } from '@open-wc/testing-helpers';
2022-03-14 10:22:17 +00:00
import { tap } from './tapbundle.classes.tap.js';
2021-02-13 16:02:40 +00:00
class WebHelpers {
html: typeof html;
fixture: typeof fixture;
constructor() {
const smartenv = new plugins.smartenv.Smartenv();
if(smartenv.isBrowser) {
this.enable();
}
}
public enable() {
tap.preTask('enable webhelpers', async () => {
2022-07-24 12:03:44 +00:00
const webhelpers = await import('@open-wc/testing')
2021-02-13 16:02:40 +00:00
this.html = webhelpers.html;
this.fixture = webhelpers.fixture;
})
}
}
export const webhelpers = new WebHelpers();