Skip to content

Commit

Permalink
refactor(eslint-plugin): modify tests to check fixer removes semi
Browse files Browse the repository at this point in the history
  • Loading branch information
otofu-square committed Apr 30, 2019
1 parent 845bf06 commit 5fe1a53
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -20,7 +20,7 @@ type Record<T, U> = {
],
invalid: [
{
code: `type T = { x: number; }`,
code: `type T = { x: number; };`,
output: `interface T { x: number; }`,
errors: [
{
Expand All @@ -31,7 +31,7 @@ type Record<T, U> = {
],
},
{
code: `type T={ x: number; }`,
code: `type T={ x: number; };`,
output: `interface T { x: number; }`,
errors: [
{
Expand All @@ -42,7 +42,7 @@ type Record<T, U> = {
],
},
{
code: `type T= { x: number; }`,
code: `type T= { x: number; };`,
output: `interface T { x: number; }`,
errors: [
{
Expand Down

0 comments on commit 5fe1a53

Please sign in to comment.