From ddc8c321a8290ed23d52b7f8bc89b15ff3b0c15d Mon Sep 17 00:00:00 2001 From: Huafu Gandon Date: Fri, 27 Jul 2018 14:22:52 +0200 Subject: [PATCH] chore: moves test-utils.ts in __helpers__ dir --- tests/{utils => __helpers__}/test-utils.ts | 0 tests/__tests__/jestconfig-json.spec.ts | 2 +- tests/__tests__/jestconfig-package.spec.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/{utils => __helpers__}/test-utils.ts (100%) diff --git a/tests/utils/test-utils.ts b/tests/__helpers__/test-utils.ts similarity index 100% rename from tests/utils/test-utils.ts rename to tests/__helpers__/test-utils.ts diff --git a/tests/__tests__/jestconfig-json.spec.ts b/tests/__tests__/jestconfig-json.spec.ts index 3bb5e4ce2e..d01904edc7 100644 --- a/tests/__tests__/jestconfig-json.spec.ts +++ b/tests/__tests__/jestconfig-json.spec.ts @@ -1,5 +1,5 @@ import * as pkgDir from 'pkg-dir'; -import { getJestConfig } from '../utils/test-utils'; +import { getJestConfig } from '../__helpers__/test-utils'; describe('get json jest config', () => { let yargsMock; diff --git a/tests/__tests__/jestconfig-package.spec.ts b/tests/__tests__/jestconfig-package.spec.ts index 154f8f898c..97d61e3a09 100644 --- a/tests/__tests__/jestconfig-package.spec.ts +++ b/tests/__tests__/jestconfig-package.spec.ts @@ -1,5 +1,5 @@ import * as pkgDir from 'pkg-dir'; -import { getJestConfig } from '../utils/test-utils'; +import { getJestConfig } from '../__helpers__/test-utils'; describe('get package json config', () => { let yargsMock;