From 5aad406ca91083e0f0c91d39c440b4cc7351e723 Mon Sep 17 00:00:00 2001 From: rvasseur31 <46020438+rvasseur31@users.noreply.github.com> Date: Thu, 18 Apr 2024 19:41:28 +0200 Subject: [PATCH] =?UTF-8?q?test(tests):=20Remove=20.only=20=F0=9F=98=B1=20?= =?UTF-8?q?(#444)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some tests are skipped, this change allows to launch all the tests by removing the `only` keyword --- test/index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test.js b/test/index.test.js index fedd977..cded295 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -42,7 +42,7 @@ describe('module-resolver', () => { ], }; - it.only('should resolve the file path', () => { + it('should resolve the file path', () => { testWithImport('app', './test/testproject/src/app', rootTransformerOpts); });