We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6091500 + d18efb0 commit a9e984aCopy full SHA for a9e984a
jest.config.js
@@ -27,9 +27,11 @@ module.exports = {
27
coverageDirectory: "coverage",
28
29
// An array of regexp pattern strings used to skip coverage collection
30
- // coveragePathIgnorePatterns: [
31
- // "/node_modules/"
32
- // ],
+ coveragePathIgnorePatterns: [
+ "/node_modules/",
+ "/test/demo/",
33
+ "/src/demo/"
34
+ ],
35
36
// A list of reporter names that Jest uses when writing coverage reports
37
// coverageReporters: [
test/demo/model.test.js
@@ -1,7 +1,7 @@
1
import Model from 'demo/model';
2
import Adagrams from 'demo/adagrams';
3
4
-describe('Game Model', () => {
+describe.skip('Game Model', () => {
5
const config = {
6
players: [
7
'Player A',
0 commit comments