Skip to content

Commit

Permalink
Fix to run tests on non-x64 architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
ganta committed Mar 22, 2023
1 parent a4fcaaf commit b858c04
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion __tests__/official-installer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,14 @@ describe('setup-node', () => {
'mocktoken'
);
expect(versions).toBeDefined();
const match = await tc.findFromManifest(versionSpec, true, versions);
const match = await tc.findFromManifest(
versionSpec,
true,
versions,
// `archFilter` parameter of `findFromManifest` function has a default value of `os.arch()`.
// However, default parameters cannot be replaced by `spyOn` function of Jest.
osm.arch()
);
expect(match).toBeDefined();
expect(match?.version).toBe(expectedVersion);
expect((match as any).lts).toBe(expectedLts);
Expand Down

0 comments on commit b858c04

Please sign in to comment.