mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 11:30:08 +00:00
* chore: video config is updated as it will not generate any video while running cypress * chore: cypress.env.json is added in the env file * chore: tsConfig is updated * feature: Cypress is updated with some of the test cases * chore: default test case is removed * chore: convertToNanoSecondsToSecond function is updated * chore: lock files, node_modules are ignored in git * test: metric are updated Co-authored-by: Ankit Nayan <ankit@signoz.io>
13 lines
303 B
JSON
13 lines
303 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"]
|
|
},
|
|
"include": ["../node_modules/cypress", "./**/*.ts"]
|
|
}
|