Skip to content

Commit

Permalink
Update wes-cli to 1.10.1, use vitest instead of jest (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
WesSouza authored Aug 18, 2022
1 parent 495c446 commit 39cb673
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-typecheck-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Install wes-cli
run: |
npm i -g wes-cli@1.9.5
npm i -g wes-cli@1.10.1
wes install
- name: Use Node ${{ matrix.node }}
Expand All @@ -37,7 +37,7 @@ jobs:
run: yarn check:types

- name: Test
run: yarn test --ci --coverage --maxWorkers=2
run: yarn test:ci

- name: Build
run: yarn build
4 changes: 3 additions & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { Calendar } from '../src/index';
import { describe, expect, it } from 'vitest';

import { Calendar } from '../src/index.js';

describe('calendar-base', () => {
it('should return a valid calendar', function () {
Expand Down
2 changes: 1 addition & 1 deletion wes-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"eslint-typescript",
"github-codeql",
"github-lint-typecheck-test-build",
"jest",
"prettier",
"rollup-lib",
"typescript",
"typescript-node",
"vitest",
"vscode"
]
}

0 comments on commit 39cb673

Please sign in to comment.