Skip to content

Commit d95ab80

Browse files
committed
Skips all tests
1 parent ab5cc90 commit d95ab80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/site-with-errors.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {Octokit} from '@octokit/core'
66
import {throttling} from '@octokit/plugin-throttling'
77
const 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

Comments
 (0)