sourcegraph/client/codeintellify/package.json
Quinn Slack 4002774429
reapply "switch from jest to vitest for faster, simpler tests (#57886)" (#58145)
* reapply "switch from jest to vitest for faster, simpler tests (https://github.com/sourcegraph/sourcegraph/pull/57886)"

This was reverted in https://github.com/sourcegraph/sourcegraph/pull/58116 due to an issue with the browser tests.

* include fetch-mock

* fix flakiness

* rm mock that did not work in experimentalVmThreads

* fix

* timeout

* fixup

---------

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
2023-11-07 12:00:18 +02:00

21 lines
495 B
JSON

{
"private": true,
"name": "@sourcegraph/codeintellify",
"version": "0.0.1",
"description": "Sourcegraph Codeintellify",
"main": "./src/index.ts",
"sideEffects": false,
"license": "Apache-2.0",
"scripts": {
"lint:js": "eslint --cache 'src/**/*.[jt]s?(x)'",
"test": "vitest"
},
"devDependencies": {
"@sourcegraph/extension-api-types": "workspace:*",
"@sourcegraph/testing": "workspace:*"
},
"dependencies": {
"@sourcegraph/common": "workspace:*"
}
}