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

mocha tests terminating before after/afterEach finishes #3575

Open
ewah opened this issue Mar 14, 2025 · 1 comment
Open

mocha tests terminating before after/afterEach finishes #3575

ewah opened this issue Mar 14, 2025 · 1 comment

Comments

@ewah
Copy link

ewah commented Mar 14, 2025

because the package.json mocha script has to be run with --exit

for the last test/test suite after() and afterEach() are prematurely terminated and never finish

@ewah ewah changed the title mocha tests exiting before after/afterEach finishes mocha tests terminating before after/afterEach finishes Mar 14, 2025
@ewah
Copy link
Author

ewah commented Mar 14, 2025

unfortunately i'm getting around this by creating a test file test/z/z.test.js. (the funny names are for -g [name] flag)

describe('sleep, so asyncs can finish', () => {
  const sleep = (ms) => {
    return new Promise((resolve) => setTimeout(resolve, ms));
  };

  let alreadySlept = false;

  it('MINIMUM sleep 2s', async function () {
    if (alreadySlept) return;
    this.timeout(3000);
    await sleep(2000);
    alreadySlept = true;
  });

  it('BASIC sleep 2s', async function () {
    if (alreadySlept) return;
    this.timeout(3000);
    await sleep(2000);
    alreadySlept = true;
  });

  it('INTEGRATION sleep 2s', async function () {
    if (alreadySlept) return;
    this.timeout(3000);
    await sleep(2000);
    alreadySlept = true;
  });
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant