Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix fourslash tests
  • Loading branch information
ahejlsberg committed Oct 17, 2022
commit 9b1dbea30ba8a0e4821ecebbad970c6a148349da
2 changes: 1 addition & 1 deletion tests/cases/fourslash/codeFixAddMissingEnumMember10.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ verify.codeFix({
}
enum A {
a = E.c,
b
b = "b"
}
A.b`
});
2 changes: 1 addition & 1 deletion tests/cases/fourslash/codeFixAddMissingEnumMember11.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum A {
}
enum B {
b = A.a,
c
c = "c"
}
B.c`
});