From 021fedaa66da60d86ef23349adb1504b0d951d6c Mon Sep 17 00:00:00 2001 From: John Rees Date: Sat, 9 Oct 2021 15:58:44 +0100 Subject: [PATCH] rename jestconfig.json to jest.config.json jest loads this file automatically --- jestconfig.json => jest.config.json | 0 package.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename jestconfig.json => jest.config.json (100%) diff --git a/jestconfig.json b/jest.config.json similarity index 100% rename from jestconfig.json rename to jest.config.json diff --git a/package.json b/package.json index deae8e1..533baf0 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "webpack", "format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'", "lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'", - "test": "jest --config jestconfig.json --verbose" + "test": "jest --verbose" }, "author": "author", "license": "MIT OR Apache-2.0",