Skip to content

Commit

Permalink
test: migrate to vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Dec 30, 2023
1 parent 12fcd84 commit 123abdd
Show file tree
Hide file tree
Showing 8 changed files with 6,306 additions and 16,751 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI
name: Build

on:
push:
Expand All @@ -14,12 +14,12 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 18.x]
node-version: [16, 18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
@@ -1,7 +1,6 @@
node_modules
coverage
.vscode
Thumbs.db
coverage
.DS_Store
node_modules
npm-debug.log
yarn-error.log
149 changes: 0 additions & 149 deletions jest/customMatchers.js

This file was deleted.

0 comments on commit 123abdd

Please sign in to comment.