1
0

feat: replace jest with vitest

This commit is contained in:
Dominik Pschenitschni
2022-01-01 14:24:06 +01:00
parent bc4ea82639
commit 8114012997
14 changed files with 323 additions and 1406 deletions

View File

@ -1,3 +1,5 @@
import {test, expect} from 'vitest'
import {calculateDayInterval} from './calculateDayInterval'
const days = {

View File

@ -1,3 +1,5 @@
import {test, expect} from 'vitest'
import {calculateNearestHours} from './calculateNearestHours'
test('5:00', () => {

View File

@ -1,3 +1,5 @@
import {test, expect} from 'vitest'
import {createDateFromString} from './createDateFromString'
test('YYYY-MM-DD HH:MM', () => {