You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ember test --filter="integration" gets a whole lot of failures. It looks like a lot of component tests have autogenerated content, so they're creating a component without much backing data and then asserting that its text is empty. These errors frequently look like Global error: Uncaught TypeError: Cannot read property 'startsWith' of undefined if the template assumes data is present but the test doesn't set any. Or it looks like Actual: > Some text Expected: > (empty string) if the template renders properly but the test was never updated with an appropriate expectation. There are also a handful of ch-form errors with an assertion error like You specified a quoteless path, `cancelAction`, to the {{action}} helper which did not resolve to an action name (a string). Perhaps you meant to use a quoted actionName? (e.g. {{action "cancelAction"}}).
The text was updated successfully, but these errors were encountered:
ember test --filter="integration" gets a whole lot of failures. It looks like a lot of component tests have autogenerated content, so they're creating a component without much backing data and then asserting that its text is empty. These errors frequently look like
Global error: Uncaught TypeError: Cannot read property 'startsWith' of undefined
if the template assumes data is present but the test doesn't set any. Or it looks likeActual: > Some text Expected: >
(empty string) if the template renders properly but the test was never updated with an appropriate expectation. There are also a handful of ch-form errors with an assertion error likeYou specified a quoteless path, `cancelAction`, to the {{action}} helper which did not resolve to an action name (a string). Perhaps you meant to use a quoted actionName? (e.g. {{action "cancelAction"}}).
The text was updated successfully, but these errors were encountered: