FIX THE TESTS ON THIS REPO AKA SOLVE MY OCD#38
Conversation
Review Summary by QodoAdd tweetnacl npm install to integration test workflow
WalkthroughsDescription• Add npm install tweetnacl to account creation test • Ensures tweetnacl dependency available before crypto operations • Fixes intermittent test failures due to missing dependency Diagramflowchart LR
A["Account Creation Test"] -->|Missing tweetnacl| B["Test Fails"]
C["npm install tweetnacl"] -->|Install dependency| A
A -->|Dependency available| D["Test Passes"]
File Changes1. .github/workflows/pull-request-testing.yaml
|
Code Review by Qodo
1.
|
|
Fixed this by removing it from temp and placing it in root but also rm it after its use. I still think this is an ugly implementation. Another method is node --input-type=module according to some github issues i have seen but idk if this approach is that much better. To whoever reviews this: if u want me to implement the -input-type=module I can do that instead. |
|
HOW TF DID THIS TEST WORK???? ...OH WAIT it uses my code lol. Ig we can confirm it works :)) |
Duplicake-fyi
left a comment
There was a problem hiding this comment.
yeah this looks good, seems like you confimed it works and it's a very simple change
|
@Pasithea0 this can be merged |
Description
Just added npm install tweetnacl cause the TEST KEEPS FAILING and it annoys me
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Fixes # (issue)
Type of change