Disable non-deterministic flaky test (#4295)

zio/stable
dan 2024-05-31 04:09:23 +01:00 committed by GitHub
parent 8e2c21a882
commit 9879159438
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -142,7 +142,8 @@ describe('makeRecordUri', () => {
}) })
}) })
describe('ago', () => { // FIXME: Reenable after fixing non-deterministic test.
describe.skip('ago', () => {
const oneYearDate = new Date( const oneYearDate = new Date(
new Date().setMonth(new Date().getMonth() - 11), new Date().setMonth(new Date().getMonth() - 11),
).setDate(new Date().getDate() - 28) ).setDate(new Date().getDate() - 28)