Skip to content

Commit

Permalink
chore: 🤖 adding more unmatch tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY committed Aug 21, 2024
1 parent 71712e6 commit e1752fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/oxc_minifier/tests/plugins/replace_global_defines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ fn replace_global_definitions_dot_with_postfix_mixed() {
])
.unwrap();
test("import.meta.env.result", "undefined", config.clone());
test("import.meta.env", "env", config);
test("import.meta.env.result.many.nested", "undefined", config.clone());
test("import.meta.env", "env", config.clone());
test("import.meta.somethingelse", "import.meta.somethingelse", config.clone());
test("import.meta", "import.meta", config);
}
}

0 comments on commit e1752fb

Please sign in to comment.