We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc42060 commit b285299Copy full SHA for b285299
crates/oxc_codegen/tests/integration/js.rs
@@ -227,7 +227,10 @@ fn assignment() {
227
test_minify("({ [a.b]: x } = foo);", "({[a.b]:x}=foo);");
228
229
test_minify(r#"({"my-key": value} = obj);"#, r#"({"my-key":value}=obj);"#);
230
- test_minify(r#"({["computed"]: a, "literal": b} = obj);"#, r#"({["computed"]:a,"literal":b}=obj);"#);
+ test_minify(
231
+ r#"({["computed"]: a, "literal": b} = obj);"#,
232
+ r#"({["computed"]:a,"literal":b}=obj);"#,
233
+ );
234
test_minify(r#"let {"test-key": testKey} = obj;"#, r#"let{"test-key":testKey}=obj;"#);
235
236
test_minify(r#"({ "test-key": key });"#, r#"({"test-key":key});"#);
0 commit comments