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
chore: install playwright deps before playwright (#86)
* chore: install playwright deps before playwright
We currently install playwright before its dependencies, and this seems
to be causing our CI to fail since a new playwright release at some
point.
Switching them around should fix it.
* chore: bump playwright
* chore: try reinstall web-test-runner
---------
Co-authored-by: Keith Cirkel <keithamus@users.noreply.github.com>
fix: handle circular refs in errors (#82)
* fix: handle circular refs in errors
Fixeschaijs/chai#1645
We already handle circular references in objects, but do not do the same
for `Error` objects. This change adds the same `seen` logic to error
inspection as we have in object inspection.
fix: emit declarations and lib via tsc (#76)
This changes from using esbuild to emit library code, and instead uses
typescript itself.
We don't currently ship type declarations since esbuild will not output
them.
fix: invalid Date object will throw a TypeError (#58) (#59)
* fix: Invalid Date object will throw a TypeError (#58)
* fixed lint error: unnecessary 'else' after 'return'