Skip to content

Commit 85e4ad5

Browse files
authored
coverage 1 (#46)
1 parent 82771c9 commit 85e4ad5

File tree

5 files changed

+202
-2
lines changed

5 files changed

+202
-2
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ temp/
1111

1212
# cds
1313
gen/
14+
15+
# test
16+
coverage
File renamed without changes.

example-cap-server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build:deps": "npm i --omit=dev --prefix=gen/srv",
1212
"build:copy-library": "npx shx rm -rf gen/srv/node_modules/@cap-js-community/feature-toggle-library && npx shx mkdir -p gen/srv/node_modules/@cap-js-community/feature-toggle-library && npx shx cp -R ../package.json ../index.cds ../cds-plugin.js ../src gen/srv/node_modules/@cap-js-community/feature-toggle-library",
1313
"deploy": "npm run build && cf push",
14-
"cloc": "npx cloc --vcs=git --exclude-ext=def --read-lang-def=cloc.def .",
14+
"cloc": "npx cloc --vcs=git --read-lang-def=../cloc.def .",
1515
"upgrade": "npm up --save && npx shx rm -rf node_modules && npm i"
1616
},
1717
"engines": {

jest.config.js

+197-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,204 @@
1+
/**
2+
* For a detailed explanation regarding each configuration property, visit:
3+
* https://jestjs.io/docs/configuration
4+
*/
15
"use strict";
26

3-
module.exports = {
7+
const config = {
8+
// NOTE: this is needed to fix problems where prettier v3 breaks jest
49
prettierPath: null,
510

11+
// All imported modules in your tests should be mocked automatically
12+
// automock: false,
13+
14+
// Stop running tests after `n` failures
15+
// bail: 0,
16+
17+
// The directory where Jest should store its cached dependency information
18+
// cacheDirectory: "/private/var/folders/z1/2f_8z74n0vz51hgm51h8p5hr0000gn/T/jest_dx",
19+
20+
// Automatically clear mock calls, instances, contexts and results before every test
21+
// clearMocks: false,
22+
23+
// Indicates whether the coverage information should be collected while executing the test
24+
collectCoverage: true,
25+
26+
// An array of glob patterns indicating a set of files for which coverage information should be collected
27+
collectCoverageFrom: ["src/**/*.js"],
28+
29+
// The directory where Jest should output its coverage files
30+
// coverageDirectory: undefined,
31+
32+
// An array of regexp pattern strings used to skip coverage collection
33+
// coveragePathIgnorePatterns: ["/node_modules/"],
34+
35+
// Indicates which provider should be used to instrument code for coverage
36+
coverageProvider: "v8",
37+
38+
// A list of reporter names that Jest uses when writing coverage reports
39+
coverageReporters: [
40+
// "json",
41+
// "text",
42+
"lcov",
43+
// "clover",
44+
],
45+
46+
// An object that configures minimum threshold enforcement for coverage results
47+
coverageThreshold: {
48+
global: {
49+
branches: 80,
50+
functions: 80,
51+
lines: 80,
52+
},
53+
},
54+
// A path to a custom dependency extractor
55+
// dependencyExtractor: undefined,
56+
57+
// Make calling deprecated APIs throw helpful error messages
58+
// errorOnDeprecated: false,
59+
60+
// The default configuration for fake timers
61+
// fakeTimers: {
62+
// "enableGlobally": false
63+
// },
64+
65+
// Force coverage collection from ignored files using an array of glob patterns
66+
// forceCoverageMatch: [],
67+
68+
// A path to a module which exports an async function that is triggered once before all test suites
69+
// globalSetup: undefined,
70+
71+
// A path to a module which exports an async function that is triggered once after all test suites
72+
// globalTeardown: undefined,
73+
74+
// A set of global variables that need to be available in all test environments
75+
// globals: {},
76+
77+
// The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
78+
// maxWorkers: "50%",
79+
80+
// An array of directory names to be searched recursively up from the requiring module's location
81+
// moduleDirectories: [
82+
// "node_modules"
83+
// ],
84+
85+
// An array of file extensions your modules use
86+
// moduleFileExtensions: [
87+
// "js",
88+
// "mjs",
89+
// "cjs",
90+
// "jsx",
91+
// "ts",
92+
// "tsx",
93+
// "json",
94+
// "node"
95+
// ],
96+
97+
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
98+
// moduleNameMapper: {},
99+
100+
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
101+
// modulePathIgnorePatterns: [],
102+
103+
// Activates notifications for test results
104+
// notify: false,
105+
106+
// An enum that specifies notification mode. Requires { notify: true }
107+
// notifyMode: "failure-change",
108+
109+
// A preset that is used as a base for Jest's configuration
110+
// preset: undefined,
111+
112+
// Run tests from one or more projects
113+
// projects: undefined,
114+
115+
// Use this configuration option to add custom reporters to Jest
116+
// reporters: undefined,
117+
118+
// Automatically reset mock state before every test
119+
// resetMocks: false,
120+
121+
// Reset the module registry before running each individual test
122+
// resetModules: false,
123+
124+
// A path to a custom resolver
125+
// resolver: undefined,
126+
127+
// Automatically restore mock state and implementation before every test
128+
// restoreMocks: false,
129+
130+
// The root directory that Jest should scan for tests and modules within
131+
// rootDir: undefined,
132+
133+
// A list of paths to directories that Jest should use to search for files in
134+
// roots: [
135+
// "<rootDir>"
136+
// ],
137+
138+
// Allows you to use a custom runner instead of Jest's default test runner
139+
// runner: "jest-runner",
140+
141+
// The paths to modules that run some code to configure or set up the testing environment before each test
142+
// setupFiles: [],
143+
6144
// A list of paths to modules that run some code to configure or set up the testing framework before each test
7145
setupFilesAfterEnv: ["./jest.setupAfterEnv.js"],
146+
147+
// The number of seconds after which a test is considered as slow and reported as such in the results.
148+
// slowTestThreshold: 5,
149+
150+
// A list of paths to snapshot serializer modules Jest should use for snapshot testing
151+
// snapshotSerializers: [],
152+
153+
// The test environment that will be used for testing
154+
// testEnvironment: "jest-environment-node",
155+
156+
// Options that will be passed to the testEnvironment
157+
// testEnvironmentOptions: {},
158+
159+
// Adds a location field to test results
160+
// testLocationInResults: false,
161+
162+
// The glob patterns Jest uses to detect test files
163+
// testMatch: [
164+
// "**/__tests__/**/*.[jt]s?(x)",
165+
// "**/?(*.)+(spec|test).[tj]s?(x)"
166+
// ],
167+
168+
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
169+
// testPathIgnorePatterns: [
170+
// "/node_modules/"
171+
// ],
172+
173+
// The regexp pattern or array of patterns that Jest uses to detect test files
174+
// testRegex: [],
175+
176+
// This option allows the use of a custom results processor
177+
// testResultsProcessor: undefined,
178+
179+
// This option allows use of a custom test runner
180+
// testRunner: "jest-circus/runner",
181+
182+
// A map from regular expressions to paths to transformers
183+
// transform: undefined,
184+
185+
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
186+
// transformIgnorePatterns: [
187+
// "/node_modules/",
188+
// "\\.pnp\\.[^\\/]+$"
189+
// ],
190+
191+
// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
192+
// unmockedModulePathPatterns: undefined,
193+
194+
// Indicates whether each individual test should be reported during the run
195+
// verbose: undefined,
196+
197+
// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
198+
// watchPathIgnorePatterns: [],
199+
200+
// Whether to use watchman for file crawling
201+
// watchman: true,
8202
};
203+
204+
module.exports = config;

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"prettier:ci": "prettier --check .",
2020
"docs": "cd docs && bundle exec jekyll serve",
2121
"docs:install": "cd docs && npx shx rm -rf vendor Gemfile.lock && bundle install",
22+
"cloc": "npx cloc --vcs=git --read-lang-def=cloc.def src",
2223
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i --package-lock"
2324
},
2425
"engines": {

0 commit comments

Comments
 (0)