diff --git a/.gitignore b/.gitignore index 77f0b455..37e17bf4 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,7 @@ build/ *.tgz # VS Code -.vscode/ \ No newline at end of file +.vscode/ + +# Local Testing +.local-testing/ \ No newline at end of file diff --git a/jest.local.config.ts b/jest.local.config.ts index 680a65d8..d7a35d8d 100644 --- a/jest.local.config.ts +++ b/jest.local.config.ts @@ -5,9 +5,9 @@ module.exports = { testEnvironment: "node", // Change to standard node environment reporters: [ "default", // default jest reporter - ['jest-html-reporter', { outputPath: 'local_test/jest.html' }], // jest html reporter + ['jest-html-reporter', { outputPath: 'local-testing/jest.html' }], // jest html reporter ], collectCoverage: true, - coverageDirectory: 'local_test/coverage', + coverageDirectory: 'local-testing/coverage', coverageReporters: ['json', 'lcov', 'text', 'clover'], }; \ No newline at end of file