mirror of
https://github.com/dorny/paths-filter.git
synced 2025-06-08 10:01:34 +00:00
Migrate jest to vitest
This commit is contained in:
parent
9a1e626831
commit
6818e25de3
9 changed files with 713 additions and 1984 deletions
|
@ -1,3 +1,5 @@
|
|||
import {describe, expect, test} from 'vitest'
|
||||
|
||||
import {csvEscape} from '../src/list-format/csv-escape'
|
||||
|
||||
describe('csvEscape() backslash escapes every character except subset of definitely safe characters', () => {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import {describe, expect, test} from 'vitest'
|
||||
|
||||
import {Filter} from '../src/filter'
|
||||
import {File, ChangeStatus} from '../src/file'
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import {describe, expect, test} from 'vitest'
|
||||
|
||||
import * as git from '../src/git'
|
||||
import {ChangeStatus} from '../src/file'
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import {describe, expect, test} from 'vitest'
|
||||
|
||||
import {backslashEscape, shellEscape} from '../src/list-format/shell-escape'
|
||||
|
||||
describe('escape() backslash escapes every character except subset of definitely safe characters', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue