From a77ff1a0d7730c8f2c6e19d4fa831a9a9bf79341 Mon Sep 17 00:00:00 2001 From: Viraj Trivedi Date: Sun, 17 Feb 2019 11:13:40 +0530 Subject: [PATCH] test: Renamed `__tests__` directory to `tests` Renamed directory for a consitent directory naming convention --- package.json | 2 +- {__tests__ => tests}/RealTimeAPI.test.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {__tests__ => tests}/RealTimeAPI.test.ts (100%) diff --git a/package.json b/package.json index 3c7dbce..7be05bb 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ } }, "testMatch": [ - "**/__tests__/*.+(ts|tsx|js)" + "**/tests/*.+(ts|tsx|js)" ], "coverageDirectory": "./coverage/", "collectCoverage": true diff --git a/__tests__/RealTimeAPI.test.ts b/tests/RealTimeAPI.test.ts similarity index 100% rename from __tests__/RealTimeAPI.test.ts rename to tests/RealTimeAPI.test.ts