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
I was reviewing this repo and trying to understand how React components are being tested. However, it appears as if React components are not being tested at all.
UI/React Components do not appear in the velocity test summary:
The following files, even though they are in the test directory, are not listed in the velocity test summary:
/tests/components/ui/account-summary-spec.jsx:
describe('Bank Transfer Component',function(){describe('doTransfer',function(){ ...
Hi @andersr, this repo actually uses several different tools to run tests, including chimp, karma & velocity. Currently velocity only runs jasmine unit tests, and UI tests are run using karma or wallaby.
I was reviewing this repo and trying to understand how React components are being tested. However, it appears as if React components are not being tested at all.
UI/React Components do not appear in the velocity test summary:
The following files, even though they are in the test directory, are not listed in the velocity test summary:
/tests/components/ui/account-summary-spec.jsx:
/tests/components/ui/bank-transfer-spec.jsx:
Removing everything (except the required render call) has no impact on test results:
I made the following changes. All tests still pass.
/src/client/components/bank-transfer.jsx
/src/client/components/account-summary.jsx
So, my questions are:
The text was updated successfully, but these errors were encountered: