From ccdbec8a4bc3a90694bb4ae33299a86bbfcd8480 Mon Sep 17 00:00:00 2001 From: gabaldon Date: Tue, 6 Feb 2024 16:31:57 +0100 Subject: [PATCH] wip --- test/unit/src/services/birthDate.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/src/services/birthDate.spec.js b/test/unit/src/services/birthDate.spec.js index 2afc1a034..598d49e0b 100644 --- a/test/unit/src/services/birthDate.spec.js +++ b/test/unit/src/services/birthDate.spec.js @@ -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') @@ -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)