File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -46,18 +46,17 @@ describe('tech debt', function () {
46
46
it ( 'remove explicit sam cli version' , function ( ) {
47
47
// Indicate to start using the latest aws-sam-cli version in our CI
48
48
// https://issues.amazon.com/issues/IDE-11386
49
- const nextMonth = new Date ( 2023 , 8 , 12 ) // September 12th, 2023
50
- const now = new Date ( )
51
49
assert (
52
- now < nextMonth ,
50
+ new Date ( ) < new Date ( 2024 , 1 , 15 ) ,
53
51
'Remove use of 1.94.0 for aws-sam-cli in linuxIntegrationTests.yml and see if integration tests are passing now'
54
52
)
55
53
} )
56
54
57
55
it ( 'stop skipping CodeCatalyst E2E Tests' , function ( ) {
58
56
// 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
+ )
62
61
} )
63
62
} )
You can’t perform that action at this time.
0 commit comments