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 c9bccc7 commit bc42060Copy full SHA for bc42060
crates/oxc_codegen/tests/integration/js.rs
@@ -230,10 +230,7 @@ fn assignment() {
230
test_minify(r#"({["computed"]: a, "literal": b} = obj);"#, r#"({["computed"]:a,"literal":b}=obj);"#);
231
test_minify(r#"let {"test-key": testKey} = obj;"#, r#"let{"test-key":testKey}=obj;"#);
232
233
- // Object literals with string keys
234
test_minify(r#"({ "test-key": key });"#, r#"({"test-key":key});"#);
235
-
236
- // Class properties with string keys
237
test_minify(r#"(class { "test-key" = key });"#, r#"(class{"test-key"=key});"#);
238
}
239
0 commit comments