mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* chore: cypress version is updated * chore: tsconfig is updated * update: default fixture json for the api are added * feat: redux-store is exposed to the Cypress * test: Login test is updated * test: global time test for default and metrics application is updated * chore: removed duplicate test case and commented unused lines
14 lines
331 B
JSON
14 lines
331 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"target": "es5",
|
|
"lib": ["es5", "dom"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
// be explicit about types included
|
|
// to avoid clashing with Jest types
|
|
"types": ["cypress", "@testing-library/cypress"],
|
|
"isolatedModules": false
|
|
},
|
|
"include": ["../node_modules/cypress", "./**/*.ts"]
|
|
}
|