Skip to content

Commit

Permalink
test(publish): add a test that checks for .env files (#22590)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Feb 26, 2024
1 parent 3f53b74 commit eaad946
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions tests/integration/publish_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,31 @@ fn includes_directories() {
assert_not_contains!(output, "ignored.ts");
}

#[test]
fn includes_dotenv() {
let context = publish_context_builder().build();
let temp_dir = context.temp_dir().path();
temp_dir.join("deno.json").write_json(&json!({
"name": "@foo/bar",
"version": "1.0.0",
"exports": "./main.ts",
}));

temp_dir.join("main.ts").write("");
temp_dir.join(".env").write("FOO=BAR");

let output = context
.new_command()
.arg("publish")
.arg("--token")
.arg("sadfasdf")
.run();
output.assert_exit_code(0);
let output = output.combined_output();
assert_contains!(output, "main.ts");
assert_not_contains!(output, ".env");
}

fn publish_context_builder() -> TestContextBuilder {
TestContextBuilder::new()
.use_http_server()
Expand Down

0 comments on commit eaad946

Please sign in to comment.