Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert from ava tests to jest #314

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Commits on Jul 4, 2023

  1. Configuration menu
    Copy the full SHA
    cc83a86 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. Remove global imports

    jamonholmgren committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    e1334be View commit details
    Browse the repository at this point in the history
  2. Refactor test files for consistency

    This commit addresses feedback on the test files. It removes explicit imports of globals in all test files for consistency. It also strengthens the assertions in the tests by replacing .toBeTruthy() and .toBeFalsy() with .toBe(true) and .toBe(false) respectively. Additionally, a test in test/cancellation.test.js has been converted to use async/await for better readability and understanding.
    jamonholmgren committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    b1373ae View commit details
    Browse the repository at this point in the history
  3. Couple more

    jamonholmgren committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    f034743 View commit details
    Browse the repository at this point in the history