Skip to content

Commit

Permalink
Remove some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Mar 20, 2024
1 parent 16ca7d5 commit 7be2b33
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -661,10 +661,6 @@ fn test_folding_mix_types_early() {
fn test_folding_add1() {
fold("x = null + true", "x=1");
fold_same("x = a + true");
fold("x = '' + {}", "x = \"[object Object]\"");
fold("x = [] + {}", "x = \"[object Object]\"");
fold("x = {} + []", "x = \"[object Object]\"");
fold("x = {} + ''", "x = \"[object Object]\"");
}

#[test]
Expand Down

0 comments on commit 7be2b33

Please sign in to comment.