Skip to content

Commit

Permalink
Linting per prettier@1.9.0. (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus authored Dec 5, 2017
1 parent dc395c8 commit bc79dc7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions translate/system-test/translate.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ test(`should detect language of multiple strings`, async t => {
cwd
);
const [detections] = await translate.detect([text, text2]);
const expected = `Detections:\n${text} => ${detections[0].language}\n${
text2
} => ${detections[1].language}`;
const expected = `Detections:\n${text} => ${
detections[0].language
}\n${text2} => ${detections[1].language}`;
t.is(output, expected);
});

Expand Down Expand Up @@ -76,9 +76,9 @@ test(`should translate multiple strings`, async t => {
cwd
);
const [translations] = await translate.translate([text, text2], toLang);
const expected = `Translations:\n${text} => (${toLang}) ${translations[0]}\n${
text2
} => (${toLang}) ${translations[1]}`;
const expected = `Translations:\n${text} => (${toLang}) ${
translations[0]
}\n${text2} => (${toLang}) ${translations[1]}`;
t.is(output, expected);
});

Expand All @@ -98,8 +98,8 @@ test(`should translate multiple strings with a model`, async t => {
cwd
);
const [translations] = await translate.translate([text, text2], toLang);
const expected = `Translations:\n${text} => (${toLang}) ${translations[0]}\n${
text2
} => (${toLang}) ${translations[1]}`;
const expected = `Translations:\n${text} => (${toLang}) ${
translations[0]
}\n${text2} => (${toLang}) ${translations[1]}`;
t.is(output, expected);
});

0 comments on commit bc79dc7

Please sign in to comment.