aboutsummaryrefslogtreecommitdiff
path: root/test/console/app
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-09-26 17:01:31 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2021-09-26 17:23:14 +0900
commite304581fb15eabb3a973d363a282ee7546561e01 (patch)
tree1afb21a2dee2ada3d10c1417fa61c0aae1f83077 /test/console/app
parent11d6d725eee2ac0a1c16e4c7a4ce4f296bb6b016 (diff)
Do not use chai on unit test
Diffstat (limited to 'test/console/app')
-rw-r--r--test/console/app/actions.test.ts19
-rw-r--r--test/console/app/reducer.test.ts21
2 files changed, 19 insertions, 21 deletions
diff --git a/test/console/app/actions.test.ts b/test/console/app/actions.test.ts
index 2f9dc71..d4b4568 100644
--- a/test/console/app/actions.test.ts
+++ b/test/console/app/actions.test.ts
@@ -7,7 +7,6 @@ import {
SHOW_FIND,
SHOW_INFO,
} from "../../../src/console/app/actions";
-import { expect } from "chai";
import browserFake from "webextensions-api-fake";
@@ -19,44 +18,44 @@ describe("console actions", () => {
describe("hide", () => {
it("create CONSOLE_HIDE action", () => {
const action = consoleActions.hide();
- expect(action.type).to.equal(HIDE);
+ expect(action.type).toEqual(HIDE);
});
});
describe("showCommand", () => {
it("create CONSOLE_SHOW_COMMAND action", async () => {
const action = await consoleActions.showCommand("hello");
- expect(action.type).to.equal(SHOW_COMMAND);
- expect(action.text).to.equal("hello");
+ expect(action.type).toEqual(SHOW_COMMAND);
+ expect(action.text).toEqual("hello");
});
});
describe("showFind", () => {
it("create CONSOLE_SHOW_FIND action", () => {
const action = consoleActions.showFind();
- expect(action.type).to.equal(SHOW_FIND);
+ expect(action.type).toEqual(SHOW_FIND);
});
});
describe("showError", () => {
it("create CONSOLE_SHOW_ERROR action", () => {
const action = consoleActions.showError("an error");
- expect(action.type).to.equal(SHOW_ERROR);
- expect(action.text).to.equal("an error");
+ expect(action.type).toEqual(SHOW_ERROR);
+ expect(action.text).toEqual("an error");
});
});
describe("showInfo", () => {
it("create CONSOLE_SHOW_INFO action", () => {
const action = consoleActions.showInfo("an info");
- expect(action.type).to.equal(SHOW_INFO);
- expect(action.text).to.equal("an info");
+ expect(action.type).toEqual(SHOW_INFO);
+ expect(action.text).toEqual("an info");
});
});
describe("hideCommand", () => {
it("create CONSOLE_HIDE_COMMAND action", () => {
const action = consoleActions.hideCommand();
- expect(action.type).to.equal(HIDE_COMMAND);
+ expect(action.type).toEqual(HIDE_COMMAND);
});
});
});
diff --git a/test/console/app/reducer.test.ts b/test/console/app/reducer.test.ts
index 4406adc..eac2012 100644
--- a/test/console/app/reducer.test.ts
+++ b/test/console/app/reducer.test.ts
@@ -1,4 +1,3 @@
-import { expect } from "chai";
import reducer, { defaultState, State } from "../../../src/console/app/recuer";
import {
hide,
@@ -18,7 +17,7 @@ describe("app reducer", () => {
};
const nextState = reducer(initialState, hide());
- expect(nextState.mode).to.be.empty;
+ expect(nextState.mode).toHaveLength(0);
});
});
@@ -26,8 +25,8 @@ describe("app reducer", () => {
it("switches to command mode with a message", () => {
const nextState = reducer(defaultState, showCommand("open "));
- expect(nextState.mode).equals("command");
- expect(nextState.consoleText).equals("open ");
+ expect(nextState.mode).toEqual("command");
+ expect(nextState.consoleText).toEqual("open ");
});
});
@@ -35,7 +34,7 @@ describe("app reducer", () => {
it("switches to find mode with a message", () => {
const nextState = reducer(defaultState, showFind());
- expect(nextState.mode).equals("find");
+ expect(nextState.mode).toEqual("find");
});
});
@@ -43,8 +42,8 @@ describe("app reducer", () => {
it("switches to error message mode with a message", () => {
const nextState = reducer(defaultState, showError("error occurs"));
- expect(nextState.mode).equals("error");
- expect(nextState.messageText).equals("error occurs");
+ expect(nextState.mode).toEqual("error");
+ expect(nextState.messageText).toEqual("error occurs");
});
});
@@ -52,8 +51,8 @@ describe("app reducer", () => {
it("switches to info message mode with a message", () => {
const nextState = reducer(defaultState, showInfo("what's up"));
- expect(nextState.mode).equals("info");
- expect(nextState.messageText).equals("what's up");
+ expect(nextState.mode).toEqual("info");
+ expect(nextState.messageText).toEqual("what's up");
});
});
@@ -66,7 +65,7 @@ describe("app reducer", () => {
};
const nextState = reducer(initialState, hideCommand());
- expect(nextState.mode).to.be.empty;
+ expect(nextState.mode).toHaveLength(0);
});
});
@@ -78,7 +77,7 @@ describe("app reducer", () => {
};
const nextState = reducer(initialState, hideCommand());
- expect(nextState.mode).equals("info");
+ expect(nextState.mode).toEqual("info");
});
});
});