Skip to content

Commit 5b9f849

Browse files
committed
test: fix CI test
1 parent ce302a3 commit 5b9f849

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/integration.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ int main(void) {
6969
go: (fixturePath: string) => {
7070
return shell.execSync(`go run ${fixturePath}`);
7171
},
72+
rust: (fixturePath: string) => {
73+
shell.execSync(`cp ${fixturePath} /tmp/rust_integration_test/src/main.rs`);
74+
return shell.execSync('cargo run --manifest-path /tmp/rust_integration_test/Cargo.toml');
75+
},
7276
};
7377

7478
const inputFileNames = readdirSync(path.join(...expectedBasePath), 'utf-8');

0 commit comments

Comments
 (0)