Skip to content

Commit

Permalink
fix(#267): ignore console errors from cht-form (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell authored Nov 6, 2024
1 parent c4e42a6 commit a01b930
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cht-conf-test-harness",
"version": "5.0.0",
"version": "5.0.1",
"description": "Test Framework for CHT Projects",
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions src/harness.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,10 @@ class Harness {
.filter(msg => !msg.text().startsWith('Error fetching media file')) // BUG: #222
.filter(msg => !msg.text().startsWith('Deprecation warning:')) // BUG: #223
.filter(msg => !msg.text().includes('with null-based index')) // BUG: #224

.filter(msg => !msg.text().startsWith('Initiating changes service')) // BUG: #267
.filter(msg => !msg.text().startsWith('Error initialising watching for db changes')) // BUG: #267
.filter(msg => !msg.text().startsWith('Attempting changes initialisation')) // BUG: #267
;

}
Expand Down

0 comments on commit a01b930

Please sign in to comment.