Skip to content

Commit

Permalink
javascript -> JavaScript
Browse files Browse the repository at this point in the history
  • Loading branch information
BYK committed Oct 14, 2020
1 parent 86f1020 commit 3bbb076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/connoisseur.spec.js
Expand Up @@ -41,7 +41,7 @@ describe("connoisseur", () => {
});

describe("stdin", () => {
it("should print no error message for plain javascript ", done => {
it("should print no error message for plain JavaScript", done => {
const proc = spawn("node", ["./index.js"]);
proc.stdin.write(`var a = "foo"${EOL}`);
proc.stdout.on("data", data => {
Expand All @@ -51,7 +51,7 @@ describe("connoisseur", () => {
proc.stdin.end();
});

it("should print no error message for a valid javascript source with a valid connoisseur test", done => {
it("should print no error message for a valid JavaScript source with a valid connoisseur test", done => {
const proc = spawn("node", ["./index.js"]);
proc.stdin.write("[4, 9, 16].map(Math.sqrt); // → [ 2, 3, 4 ]");
proc.stdout.on("data", data => {
Expand All @@ -61,7 +61,7 @@ describe("connoisseur", () => {
proc.stdin.end();
});

it("should print errors for a valid javascript source with an invalid connoisseur test", done => {
it("should print errors for a valid JavaScript source with an invalid connoisseur test", done => {
const proc = spawn("node", ["./index.js"]);
proc.stdin.write("[4, 9, 16].map(Math.sqrt); // → [ 1, 2, 3 ]");
proc.stdout.on("data", data => {
Expand Down

0 comments on commit 3bbb076

Please sign in to comment.