Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 7f59f09

Browse files
committed
chore(sonar): exclude fixtures from sonar analysis
1 parent 0dd122b commit 7f59f09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sonar.projectVersion=2.0.0-beta.1
44

55
sonar.javascript.file.suffixes=.js
66
sonar.sourceEncoding=UTF-8
7-
sonar.exclusions=node_modules/**,*.config.js
7+
sonar.exclusions=node_modules/**,*.config.js,test/e2e/fixtures/**
88
sonar.test.exclusions=test/**/*
99
sonar.coverage.exclusions=test/**/*
1010
sonar.cpd.exclusions=test/**

test/e2e/support/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const startExistingCore = (core, mocksPath, options = {}) => {
6060
};
6161

6262
const startServer = (mocksPath, options = {}) => {
63-
return startExistingCore(createCore(options), mocksPath, options);
63+
return startExistingCore(createCore(), mocksPath, options);
6464
};
6565

6666
const serverUrl = (port) => {

0 commit comments

Comments
 (0)