From 83d3f8d0ef4d4b5d79b276deefdedd52bf85039a Mon Sep 17 00:00:00 2001 From: Revone Date: Thu, 21 Sep 2023 14:50:22 +0800 Subject: [PATCH] [test] test directary renamed. [ci] node.js version changed --- .github/workflows/ci.yml | 2 +- jest.config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17581ea..12e0647 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x, 20.x] + node-version: [19.x, 20.x] steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/jest.config.js b/jest.config.js index 6a6f586..e52716c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,5 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', - testMatch: ['/tests/**/*.test.ts', '/tests/**/*.test.js'], -}; \ No newline at end of file + testMatch: ['/test/**/*.test.ts', '/test/**/*.test.js'], +};