aboutsummaryrefslogtreecommitdiff
path: root/test/console/completion
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-09-26 14:15:33 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2021-09-26 16:12:58 +0900
commit84df6f233677a16f8a3f84b3eb7e77923da2c7fa (patch)
treefd397824d5295d4e38a6412d3faa1f06214a839b /test/console/completion
parente1b4a2dc6763966628bc4a29838c48022cd5b4e5 (diff)
Use jest API and fix some tests
Diffstat (limited to 'test/console/completion')
-rw-r--r--test/console/completion/reducer.test.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/console/completion/reducer.test.ts b/test/console/completion/reducer.test.ts
index b742872..91a6751 100644
--- a/test/console/completion/reducer.test.ts
+++ b/test/console/completion/reducer.test.ts
@@ -65,14 +65,14 @@ describe("completion reducer", () => {
});
describe("selectNext", () => {
- context("when no completion groups", () => {
+ describe("when no completion groups", () => {
it("does nothing", () => {
const nextState = reducer(defaultState, selectNext());
expect(nextState.select).equals(-1);
});
});
- context("when no completion items", () => {
+ describe("when no completion items", () => {
it("does nothing", () => {
const state = {
...defaultState,
@@ -83,7 +83,7 @@ describe("completion reducer", () => {
});
});
- context("when completions exist", () => {
+ describe("when completions exist", () => {
it("selects next selection", () => {
let state: State = {
...defaultState,
@@ -116,13 +116,13 @@ describe("completion reducer", () => {
});
describe("selectPrev", () => {
- context("when no completion groups", () => {
+ describe("when no completion groups", () => {
it("does nothing", () => {
const nextState = reducer(defaultState, selectPrev());
expect(nextState.select).equals(-1);
});
- context("when no completion items", () => {
+ describe("when no completion items", () => {
it("does nothing", () => {
const state = {
...defaultState,
@@ -134,7 +134,7 @@ describe("completion reducer", () => {
});
});
- context("when completions exist", () => {
+ describe("when completions exist", () => {
it("selects a previous completion", () => {
let state: State = {
...defaultState,