diff --git a/package.json b/package.json index 15c035227..12308cb97 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,8 @@ "build": "yarn wsrun --serial build", "type-check": "yarn wsrun type-check", "file-check": "yarn install --check-files", - "check-all": "yarn build && yarn file-check && yarn type-check" + "check-all": "yarn build && yarn file-check && yarn type-check", + "test-playwright": "cd test && yarn && yarn playwright test" }, "devDependencies": { "prettier": "^2.4.1", diff --git a/packages/demo/src/App.svelte b/packages/demo/src/App.svelte index 456f2d726..168b1a60d 100644 --- a/packages/demo/src/App.svelte +++ b/packages/demo/src/App.svelte @@ -661,7 +661,7 @@ - @@ -670,13 +670,15 @@ {#if $wallets$} {#each $wallets$ as { icon, label, accounts, chains, provider, instance }} -
+
{@html icon}
- {label} + {label}
-
Chains: {JSON.stringify(chains, null, 2)}
+
+ Chains: {JSON.stringify(chains, null, 2)} +
{#each accounts as { address, ens, uns, balance }}