-
-
Couldn't load subscription status.
- Fork 1.4k
Closed
Labels
Description
Add more "exclude" options for "self.assert_no_js_errors()"
After the update, all of the following examples should be valid:
self.assert_no_js_errors()
self.assert_no_js_errors(exclude=["/api.", "/analytics."]) # list format
self.assert_no_js_errors(exclude="//api.go,/analytics.go") # comma-separated format
self.assert_no_js_errors(exclude=["Uncaught SyntaxError"])
self.assert_no_js_errors(exclude=["TypeError", "SyntaxE"])