@@ -6,7 +6,7 @@ import {Octokit} from '@octokit/core'
66import { throttling } from '@octokit/plugin-throttling'
77const OctokitWithThrottling = Octokit . plugin ( throttling )
88
9- describe ( 'site-with-errors' , ( ) => {
9+ describe . skip ( 'site-with-errors' , ( ) => {
1010 let results : Result [ ]
1111
1212 beforeAll ( ( ) => {
@@ -15,7 +15,7 @@ describe('site-with-errors', () => {
1515 results = JSON . parse ( fs . readFileSync ( process . env . CACHE_PATH ! , 'utf-8' ) )
1616 } )
1717
18- it . skip ( 'cache has expected results' , ( ) => {
18+ it ( 'cache has expected results' , ( ) => {
1919 const actual = results . map ( ( { issue : { url : issueUrl } , pullRequest : { url : pullRequestUrl } , findings} ) => {
2020 const { problemUrl, solutionLong, screenshotId, ...finding } = findings [ 0 ]
2121 // Check volatile fields for existence only
@@ -180,7 +180,7 @@ describe('site-with-errors', () => {
180180 }
181181 } )
182182
183- it . skip ( 'pull requests exist and have expected author, state, and assignee' , async ( ) => {
183+ it ( 'pull requests exist and have expected author, state, and assignee' , async ( ) => {
184184 for ( const pullRequest of pullRequests ) {
185185 expect ( pullRequest . user . login ) . toBe ( 'Copilot' )
186186 expect ( pullRequest . state ) . toBe ( 'open' )
0 commit comments