Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Feb 6, 2024
1 parent b544925 commit ccdbec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/src/services/birthDate.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { buildImportWalletBirthdate } from '@/services/birthDate'
import { describe, expect, test } from 'vitest'

describe.only('birthDate', () => {
describe('birthDate', () => {
test('return 30 days less than the provided date', () => {
const date = new Date('2020-12-31')

Expand All @@ -20,7 +20,7 @@ describe.only('birthDate', () => {
expect(birthDate).toBe(null)
})

it.only('return null if the date is in the future', () => {
test('return null if the date is in the future', () => {
// date 3 days in the future
const date = new Date(Date.now() + 3 * 24 * 60 * 60 * 1000)

Expand Down

0 comments on commit ccdbec8

Please sign in to comment.