diff --git a/bsconfig-tdd-sample.json b/bsconfig-tdd-sample.json new file mode 100644 index 000000000..ad0c7997d --- /dev/null +++ b/bsconfig-tdd-sample.json @@ -0,0 +1,48 @@ +{ + "files": [ + { + "src": "test-app/**/*" + }, + { + "src": "source/**/!(Main.brs)", + "dest": "source" + }, + { + "src": "components/**/*", + "dest": "components" + }, + { + "src": "locale/**/*", + "dest": "locale" + }, + { + "src": "settings/**/*", + "dest": "settings" + }, + "!**/*.spec.bs", + { + "src": "**/BaseTestSuite.spec.bs", + "dest": "source" + }, + { + "src": "**/isValid.spec.bs", + "dest": "source" + } + ], + "diagnosticFilters": ["node_modules/**/*", "**/roku_modules/**/*"], + "autoImportComponentScript": true, + "allowBrighterScriptInBrightScript": true, + "createPackage": false, + "stagingFolderPath": "build", + "plugins": ["rooibos-roku"], + "rooibos": { + "isRecordingCodeCoverage": false, + "testsFilePattern": null, + "showOnlyFailures": true, + "catchCrashes": true, + "lineWidth": 70, + "failFast": false, + "sendHomeOnFinish": false + }, + "sourceMap": true +} diff --git a/bsconfig-tests.json b/bsconfig-tests.json index 21247d4a7..f34a821b3 100644 --- a/bsconfig-tests.json +++ b/bsconfig-tests.json @@ -1,49 +1,39 @@ { - "files": [ - { - "src": "test-app/**/*" - }, - { - "src": "source/**/!(Main.brs)", - "dest": "source" - }, - { - "src": "components/**/*", - "dest": "components" - }, - { - "src": "locale/**/*", - "dest": "locale" - }, - { - "src": "settings/**/*", - "dest": "settings" - } - ], - "diagnosticFilters": [ - "node_modules/**/*", - "**/roku_modules/**/*" - ], - "autoImportComponentScript": true, - "allowBrighterScriptInBrightScript": true, - "createPackage": false, - "stagingFolderPath": "build", - "plugins": [ - "rooibos-roku" - ], - "rooibos": { - "isRecordingCodeCoverage": false, - "testsFilePattern": null, - "tags": [ - "!integration", - "!deprecated", - "!fixme" - ], - "showOnlyFailures": true, - "catchCrashes": true, - "lineWidth": 70, - "failFast": false, - "sendHomeOnFinish": false + "files": [ + { + "src": "test-app/**/*" }, - "sourceMap": true -} \ No newline at end of file + { + "src": "source/**/!(Main.brs)", + "dest": "source" + }, + { + "src": "components/**/*", + "dest": "components" + }, + { + "src": "locale/**/*", + "dest": "locale" + }, + { + "src": "settings/**/*", + "dest": "settings" + } + ], + "diagnosticFilters": ["node_modules/**/*", "**/roku_modules/**/*"], + "autoImportComponentScript": true, + "allowBrighterScriptInBrightScript": true, + "createPackage": false, + "stagingFolderPath": "build", + "plugins": ["rooibos-roku"], + "rooibos": { + "isRecordingCodeCoverage": false, + "testsFilePattern": null, + "showOnlyFailures": true, + "catchCrashes": true, + "lineWidth": 70, + "failFast": false, + "sendHomeOnFinish": false + }, + "sourceMap": true +}