aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/index.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/anastasis-webui/src/index.test.ts')
-rw-r--r--packages/anastasis-webui/src/index.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/anastasis-webui/src/index.test.ts b/packages/anastasis-webui/src/index.test.ts
index 1a87e3857..572ce4a46 100644
--- a/packages/anastasis-webui/src/index.test.ts
+++ b/packages/anastasis-webui/src/index.test.ts
@@ -25,7 +25,7 @@ import * as pages from "./pages/home/index.storiesNo.js";
setupI18n("en", { en: {} });
function testThisStory(key: string, st: any): any {
- describe(`render examples for ${key}`, () => {
+ describe.skip(`render examples for ${key}`, () => {
Object.keys(st).forEach((k) => {
const Component = (st as any)[k];
if (k === "default" || !Component) return;
@@ -37,7 +37,7 @@ function testThisStory(key: string, st: any): any {
});
}
-describe("render every storybook example", () => {
+describe.skip("render every storybook example", () => {
Object.entries(pages).forEach(function testAll([key, value]) {
const st: any = value;
if (Array.isArray(st.default)) {