Skip to content

Commit

Permalink
Merge pull request #2948 from StratoKit/localDebugDocs
Browse files Browse the repository at this point in the history
docs: fix example minimal local debug config
  • Loading branch information
bcameron1231 authored Mar 4, 2024
2 parents e70f74b + f64c6a4 commit 4a19bfa
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions docs/contributing/local-debug-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ You can control which tests are run by including or omitting sp and graph sectio
The following configuration file allows you to run all the tests that do not contact services.

```js
var sets = {
testing: {
enableWebTests: false,
}
}

module.exports = sets;
export const settings = {
testing: {
enableWebTests: false,
},
}
```

## Test your setup
Expand Down

0 comments on commit 4a19bfa

Please sign in to comment.