Skip to content

Commit 4d5ab5f

Browse files
docs: rephrase
1 parent 6985d2c commit 4d5ab5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,23 @@ const ENTER = "\x0D";
4848
const cliPath = `${__dirname}/cli.js`;
4949

5050
describe("cli-prompts-test", () => {
51-
it("chooses first option", async () => {
51+
it("picks first option", async () => {
5252
const { stdout } = await runTest(
5353
[cliPath],
5454
[ENTER]
5555
);
5656
expect(stdout).toContain("You chose First option");
5757
});
5858

59-
it("chooses second option", async () => {
59+
it("picks second option", async () => {
6060
const { stdout } = await runTest(
6161
[cliPath],
6262
[`${DOWN}${ENTER}`]
6363
);
6464
expect(stdout).toContain("You chose Second option");
6565
});
6666

67-
it("chooses third option", async () => {
67+
it("picks third option", async () => {
6868
const { stdout } = await runTest(
6969
[cliPath],
7070
[`${DOWN}${DOWN}${ENTER}`]

0 commit comments

Comments
 (0)