From c15075ea847ffeb65889c125d508367e062e9ddc Mon Sep 17 00:00:00 2001 From: uzlopak Date: Mon, 19 Aug 2024 18:18:54 +0200 Subject: [PATCH] fix windows --- e2e/{custom.test.js => custom.spec.js} | 0 tap-snapshots/test/static.test.js.test.cjs | 49 ---------------------- 2 files changed, 49 deletions(-) rename e2e/{custom.test.js => custom.spec.js} (100%) delete mode 100644 tap-snapshots/test/static.test.js.test.cjs diff --git a/e2e/custom.test.js b/e2e/custom.spec.js similarity index 100% rename from e2e/custom.test.js rename to e2e/custom.spec.js diff --git a/tap-snapshots/test/static.test.js.test.cjs b/tap-snapshots/test/static.test.js.test.cjs deleted file mode 100644 index fd6a831..0000000 --- a/tap-snapshots/test/static.test.js.test.cjs +++ /dev/null @@ -1,49 +0,0 @@ -/* IMPORTANT - * This snapshot file is auto-generated, but designed for humans. - * It should be checked into source control and tracked carefully. - * Re-generate by setting TAP_SNAPSHOT=1 and running tests. - * Make sure to inspect the output below. Do not ignore changes! - */ -'use strict' -exports['test/static.test.js > TAP > postProcessor works, swagger route returns updated yaml > must match snapshot 1'] = ` -openapi: 3.0.0 -info: - description: Test swagger specification - version: 1.0.0 - title: Test swagger specification - contact: - email: super.developer@gmail.com -servers: - - url: http://localhost:4000/ - description: Localhost (uses test data) -paths: - /status: - get: - description: Status route, so we can check if server is alive - tags: - - Status - responses: - "200": - description: Server is alive - content: - application/json: - schema: - type: object - properties: - health: - type: boolean - date: - type: string - example: - health: true - date: 2018-02-19T15:36:46.758Z - -` - -exports['test/static.test.js > TAP > swagger route returns explicitly passed doc > must match snapshot 1'] = ` -{ - "message": "Route GET:/documentation/json not found", - "error": "Not Found", - "statusCode": 404 -} -`