disable broken jest tests (#31956)

This commit is contained in:
Juliana Peña 2022-03-01 01:59:14 -08:00 committed by GitHub
parent 939bb53c60
commit 3d690041bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -25,7 +25,8 @@ import {
} from './testutils/fixtures'
import { dispatchMouseEventAtPositionImpure } from './testutils/mouse'
describe('Hoverifier', () => {
// TODOD #31952: Some of these tests are failing. They should be fixed and made to run in CI, or deleted.
describe.skip('Hoverifier', () => {
const dom = new DOM()
afterAll(dom.cleanup)

View File

@ -1,6 +1,7 @@
import { hashCode } from './hashCode'
describe('hashCode', () => {
// TODOD #31952: Some of these tests are failing. They should be fixed and made to run in CI, or deleted.
describe.skip('hashCode', () => {
const testCaseUUIDs = {
'd3e406d5-a359-4b88-b0d3-db025a957811': 'EvvIjqiG1H71c2DNHbO4m2E/hvN2cYpGVRH+hcLW4uM=',
'd3f07658-2629-45ad-9159-86b738f0b6bf': 'k+mqeb0pK+eT3TbvrR2IEsyhty5NJHKNeNr9AdmlwMc=',

View File

@ -21,7 +21,7 @@
"watch-web": "yarn workspace @sourcegraph/web run watch",
"generate": "gulp generate",
"watch-generate": "gulp watchGenerate",
"test": "jest --testPathIgnorePatterns end-to-end regression integration storybook",
"test": "jest --testPathIgnorePatterns end-to-end regression integration storybook /out/.*test.js",
"test-integration:base": "TS_NODE_PROJECT=client/web/src/integration/tsconfig.json mocha --parallel=$CI --retries=1 --jobs=2",
"test-integration": "yarn test-integration:base \"./client/web/src/integration/**/*.test.ts\"",
"test-browser-integration": "yarn --cwd client/browser run test-integration",