@@ -16,7 +16,7 @@ describe('site-with-errors', () => {
1616 results = JSON . parse ( fs . readFileSync ( process . env . CACHE_PATH ! , 'utf-8' ) )
1717 } )
1818
19- it ( 'cache has expected results' , ( ) => {
19+ it . skip ( 'cache has expected results' , ( ) => {
2020 const actual = results . map ( ( { issue : { url : issueUrl } , pullRequest : { url : pullRequestUrl } , findings} ) => {
2121 const { problemUrl, solutionLong, screenshotId, ...finding } = findings [ 0 ]
2222 // Check volatile fields for existence only
@@ -146,8 +146,6 @@ describe('site-with-errors', () => {
146146 // Fetch pull requests referenced in the findings file
147147 pullRequests = await Promise . all (
148148 results . map ( async ( { pullRequest : { url : pullRequestUrl } } ) => {
149- // Give linked Copilot PR creation a grace period before asserting.
150- await wait ( 120000 )
151149 expect ( pullRequestUrl ) . toBeDefined ( )
152150 const { owner, repo, pullNumber} =
153151 / h t t p s : \/ \/ g i t h u b \. c o m \/ (?< owner > [ ^ / ] + ) \/ (?< repo > [ ^ / ] + ) \/ p u l l \/ (?< pullNumber > \d + ) / . exec (
@@ -183,7 +181,7 @@ describe('site-with-errors', () => {
183181 }
184182 } )
185183
186- it ( 'pull requests exist and have expected author, state, and assignee' , async ( ) => {
184+ it . skip ( 'pull requests exist and have expected author, state, and assignee' , async ( ) => {
187185 for ( const pullRequest of pullRequests ) {
188186 expect ( pullRequest . user . login ) . toBe ( 'Copilot' )
189187 expect ( pullRequest . state ) . toBe ( 'open' )
0 commit comments