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

fix(test): ensure all tests are run and fix failing ones #33

Merged
merged 1 commit into from Jul 30, 2022

Conversation

aduh95
Copy link
Contributor

@aduh95 aduh95 commented Jul 29, 2022

I'm not sure what was node test/parallel/* suppose to do, but clearly it wasn't reporting test failures. Instead I created a small script that execute all the files one by one (which makes "parallel" a very bad name for it, but that's also much easier to setup so here you go).

const PARALLEL_DIR = new URL('./parallel/', import.meta.url)
const dir = await fs.opendir(PARALLEL_DIR)

for await (const { name } of dir) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is kind of what node --test does but I understand why we relying on it is risky here

@aduh95 aduh95 merged commit 215621e into nodejs:main Jul 30, 2022
@aduh95 aduh95 deleted the fix-test-suite branch July 30, 2022 20:34
Copy link
Member

@juliangruber juliangruber left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

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

Successfully merging this pull request may close these issues.

None yet

3 participants