Migrate all tests to TypeScript (#19)

* Merge 2 npm repos

* Install ts-jest

* Update jestconfig

* Fix jest types

* jest fix

* Fix babel config ref issue

* Fix import

* Fix import meta issue

* fix generate

* Skip multi-user tests
This commit is contained in:
Chenlei Hu
2024-06-17 11:25:56 -04:00
committed by GitHub
parent 48d5870d9c
commit f85cb3d5e9
50 changed files with 7753 additions and 5789 deletions

View File

@@ -1,5 +1,6 @@
import { addStylesheet } from "../utils";
// @ts-ignore
addStylesheet(import.meta.url);
export function createSpinner() {

View File

@@ -12,6 +12,7 @@ interface SelectedUser {
export class UserSelectionScreen {
async show(users, user): Promise<SelectedUser>{
// This will rarely be hit so move the loading to on demand
// @ts-ignore
await addStylesheet(import.meta.url);
const userSelection = document.getElementById("comfy-user-selection");
userSelection.style.display = "";