mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
62e3f5060e
Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
32 lines
819 B
Rust
32 lines
819 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
static TEST_REGISTRY_URL: &str = "http://127.0.0.1:4250";
|
|
|
|
pub fn env_vars_for_registry() -> Vec<(String, String)> {
|
|
vec![(
|
|
"DENO_REGISTRY_URL".to_string(),
|
|
TEST_REGISTRY_URL.to_string(),
|
|
)]
|
|
}
|
|
|
|
itest!(no_token {
|
|
args: "do-not-use-publish publish/missing_deno_json",
|
|
output: "publish/no_token.out",
|
|
exit_code: 1,
|
|
});
|
|
|
|
itest!(missing_deno_json {
|
|
args:
|
|
"do-not-use-publish --token 'sadfasdf' $TESTDATA/publish/missing_deno_json",
|
|
output: "publish/missing_deno_json.out",
|
|
exit_code: 1,
|
|
temp_cwd: true,
|
|
});
|
|
|
|
itest!(successful {
|
|
args: "do-not-use-publish --token 'sadfasdf' $TESTDATA/publish/successful",
|
|
output: "publish/successful.out",
|
|
envs: env_vars_for_registry(),
|
|
http_server: true,
|
|
temp_cwd: true,
|
|
});
|