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
- Use string templating, not concatenation: `"Hello \(name)"` not `"Hello ".concat(name)`
64
+
- Use `equalWithinVariance` from `test_helpers.cdc` for equality assertions where rounding errors are possible
65
+
- Use red-green TDD for bug fixes and extensions to functionality. Tests must use assertions (eg. `Test.assert`) to verify expected behaviour, not logs.
0 commit comments