Skip to content

Commit 1b29da8

Browse files
authored
Merge pull request #3826 from aws/fixtests2
2 parents 409f1b7 + 963db7e commit 1b29da8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/test/techdebt.test.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,17 @@ describe('tech debt', function () {
4646
it('remove explicit sam cli version', function () {
4747
// Indicate to start using the latest aws-sam-cli version in our CI
4848
// https://issues.amazon.com/issues/IDE-11386
49-
const nextMonth = new Date(2023, 8, 12) // September 12th, 2023
50-
const now = new Date()
5149
assert(
52-
now < nextMonth,
50+
new Date() < new Date(2024, 1, 15),
5351
'Remove use of 1.94.0 for aws-sam-cli in linuxIntegrationTests.yml and see if integration tests are passing now'
5452
)
5553
})
5654

5755
it('stop skipping CodeCatalyst E2E Tests', function () {
5856
// https://issues.amazon.com/issues/IDE-10496
59-
const nextMonth = new Date(2023, 8, 12) // September 12th, 2023
60-
const now = new Date()
61-
assert(now < nextMonth, 'Re-evaluate if we should still keep skipping CodeCatalyst E2E Tests')
57+
assert(
58+
new Date() < new Date(2024, 1, 15),
59+
'Re-evaluate if we should still keep skipping CodeCatalyst E2E Tests'
60+
)
6261
})
6362
})

0 commit comments

Comments
 (0)