mirror of
https://github.com/actions-rs/cargo.git
synced 2025-09-09 01:31:55 +03:00
Rename input.test.ts to input.test.js
This commit is contained in:
parent
54f21e34c4
commit
77c2b0924a
1 changed files with 0 additions and 0 deletions
33
__tests__/input.test.js
Normal file
33
__tests__/input.test.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
import * as input from "../src/input";
|
||||
|
||||
const testEnvVars = {
|
||||
INPUT_COMMAND: "build",
|
||||
// There are few unnecessary spaces here to check that args parser works properly
|
||||
INPUT_ARGS:
|
||||
" --release --target x86_64-unknown-linux-gnu --no-default-features --features unstable ",
|
||||
"INPUT_USE-CROSS": "true",
|
||||
INPUT_TOOLCHAIN: "+nightly",
|
||||
};
|
||||
|
||||
describe("actions-rs/cargo/input", () => {
|
||||
beforeEach(() => {
|
||||
for (const key in testEnvVars)
|
||||
process.env[key] = testEnvVars[key as keyof typeof testEnvVars];
|
||||
});
|
||||
|
||||
it("Parses action input into cargo input", () => {
|
||||
const result = input.get();
|
||||
|
||||
expect(result.command).toBe("build");
|
||||
expect(result.args).toStrictEqual([
|
||||
"--release",
|
||||
"--target",
|
||||
"x86_64-unknown-linux-gnu",
|
||||
"--no-default-features",
|
||||
"--features",
|
||||
"unstable",
|
||||
]);
|
||||
expect(result.useCross).toBe(true);
|
||||
expect(result.toolchain).toBe("nightly");
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue