From ebd4d56611317284230a0e8cf3292f8ea915b4fa Mon Sep 17 00:00:00 2001 From: Lucas Bickel <116588+hairmare@users.noreply.github.com> Date: Sat, 31 Dec 2022 20:10:36 +0100 Subject: [PATCH] chore: remove unworkable tests (#85) --- .../__snapshots__/index.test.ts.snap | 27 ------------------- src/__tests__/index.test.ts | 11 -------- 2 files changed, 38 deletions(-) delete mode 100644 src/__tests__/__snapshots__/index.test.ts.snap delete mode 100644 src/__tests__/index.test.ts diff --git a/src/__tests__/__snapshots__/index.test.ts.snap b/src/__tests__/__snapshots__/index.test.ts.snap deleted file mode 100644 index d4093ef..0000000 --- a/src/__tests__/__snapshots__/index.test.ts.snap +++ /dev/null @@ -1,27 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`duration display index should define a display 1`] = ` -Object { - "component": Object { - "__name": "display", - "props": Object { - "value": Object { - "required": false, - "type": [Function], - }, - }, - "render": [Function], - "setup": [Function], - }, - "description": "$:duration.display.description", - "icon": "timer", - "id": "duration", - "name": "$:duration.display.name", - "options": null, - "types": Array [ - "integer", - "float", - "decimal", - ], -} -`; diff --git a/src/__tests__/index.test.ts b/src/__tests__/index.test.ts deleted file mode 100644 index 494c6b5..0000000 --- a/src/__tests__/index.test.ts +++ /dev/null @@ -1,11 +0,0 @@ -import index from "../index"; - -describe("duration", () => { - describe("display", () => { - describe("index", () => { - it("should define a display", () => { - expect(index).toMatchSnapshot(); - }); - }); - }); -});