test: add testing framework

This commit is contained in:
M. George Hansen 2020-05-30 11:41:23 -07:00
parent 31d900ed40
commit f109172cc4
Signed by: mgeorgehansen
SSH key fingerprint: SHA256:JlIGiQLPyQ2RHTH3a2oVlb20Xkh9Glr8DUF4YTXHJxM
12 changed files with 563 additions and 24 deletions

View file

@ -6,3 +6,13 @@
export { HTMLElement, Component } from "./component";
export { UserConfig as Config } from "./config";
export { createElement } from "./create-element";
import { HTMLElement } from "./component";
import { IntrinsicElements as JsxIntrinsics } from "./jsx";
declare global {
namespace JSX {
type Element = HTMLElement;
type IntrinsicElements = JsxIntrinsics;
}
}