diff options
Diffstat (limited to 'test/background/completion')
4 files changed, 24 insertions, 28 deletions
diff --git a/test/background/completion/OpenCompletionUseCase.test.ts b/test/background/completion/OpenCompletionUseCase.test.ts index f43e6c1..2284470 100644 --- a/test/background/completion/OpenCompletionUseCase.test.ts +++ b/test/background/completion/OpenCompletionUseCase.test.ts @@ -11,7 +11,6 @@ import CachedSettingRepository from "../../../src/background/repositories/Cached  import Settings, {    DefaultSetting,  } from "../../../src/shared/settings/Settings"; -import { expect } from "chai";  import sinon from "sinon";  import Properties from "../../../src/shared/settings/Properties";  import Search from "../../../src/shared/settings/Search"; @@ -73,7 +72,7 @@ describe("OpenCompletionUseCase", () => {        );        const items = await sut.getCompletionTypes(); -      expect(items).to.deep.equal([ +      expect(items).toEqual([          CompletionType.SearchEngines,          CompletionType.History,          CompletionType.Bookmarks, @@ -99,17 +98,17 @@ describe("OpenCompletionUseCase", () => {          )        ); -      expect(await sut.requestSearchEngines("")).to.deep.equal([ +      expect(await sut.requestSearchEngines("")).toEqual([          "google",          "yahoo",          "bing",          "googleja",        ]); -      expect(await sut.requestSearchEngines("go")).to.deep.equal([ +      expect(await sut.requestSearchEngines("go")).toEqual([          "google",          "googleja",        ]); -      expect(await sut.requestSearchEngines("x")).to.be.empty; +      expect(await sut.requestSearchEngines("x")).toHaveLength(0);      });    }); @@ -127,11 +126,11 @@ describe("OpenCompletionUseCase", () => {          .withArgs("xyz")          .returns(Promise.resolve([])); -      expect(await sut.requestBookmarks("site")).to.deep.equal([ +      expect(await sut.requestBookmarks("site")).toEqual([          { title: "site1", url: "https://site1.example.com" },          { title: "site2", url: "https://site2.example.com/" },        ]); -      expect(await sut.requestBookmarks("xyz")).to.be.empty; +      expect(await sut.requestBookmarks("xyz")).toHaveLength(0);      });    }); @@ -149,11 +148,11 @@ describe("OpenCompletionUseCase", () => {          .withArgs("xyz")          .returns(Promise.resolve([])); -      expect(await sut.requestHistory("site")).to.deep.equal([ +      expect(await sut.requestHistory("site")).toEqual([          { title: "site1", url: "https://site1.example.com" },          { title: "site2", url: "https://site2.example.com/" },        ]); -      expect(await sut.requestHistory("xyz")).to.be.empty; +      expect(await sut.requestHistory("xyz")).toHaveLength(0);      });    });  }); diff --git a/test/background/completion/PropertyCompletionUseCase.test.ts b/test/background/completion/PropertyCompletionUseCase.test.ts index dfc989f..b008eb5 100644 --- a/test/background/completion/PropertyCompletionUseCase.test.ts +++ b/test/background/completion/PropertyCompletionUseCase.test.ts @@ -1,6 +1,5 @@  import "reflect-metadata";  import PropertyCompletionUseCase from "../../../src/background/completion/PropertyCompletionUseCase"; -import { expect } from "chai";  describe("PropertyCompletionUseCase", () => {    describe("getProperties", () => { @@ -8,11 +7,11 @@ describe("PropertyCompletionUseCase", () => {        const sut = new PropertyCompletionUseCase();        const properties = await sut.getProperties(); -      expect(properties).to.deep.contain({ +      expect(properties).toContainEqual({          name: "smoothscroll",          type: "boolean",        }); -      expect(properties).to.deep.contain({ name: "complete", type: "string" }); +      expect(properties).toContainEqual({ name: "complete", type: "string" });      });    });  }); diff --git a/test/background/completion/TabCompletionUseCase.test.ts b/test/background/completion/TabCompletionUseCase.test.ts index 319f217..3b2723b 100644 --- a/test/background/completion/TabCompletionUseCase.test.ts +++ b/test/background/completion/TabCompletionUseCase.test.ts @@ -4,7 +4,6 @@ import { Tab } from "../../../src/background/completion/TabRepository";  import TabPresenter from "../../../src/background/presenters/TabPresenter";  import TabCompletionUseCase from "../../../src/background/completion/TabCompletionUseCase";  import sinon from "sinon"; -import { expect } from "chai";  import TabFlag from "../../../src/shared/TabFlag";  class MockTabRepository implements TabRepositoryImpl { @@ -182,7 +181,7 @@ describe("TabCompletionUseCase", () => {            ])          ); -      expect(await sut.queryTabs("", false)).to.deep.equal([ +      expect(await sut.queryTabs("", false)).toEqual([          {            index: 1,            title: "Google", @@ -206,7 +205,7 @@ describe("TabCompletionUseCase", () => {          },        ]); -      expect(await sut.queryTabs("oo", false)).to.deep.equal([ +      expect(await sut.queryTabs("oo", false)).toEqual([          {            index: 1,            title: "Google", @@ -225,7 +224,7 @@ describe("TabCompletionUseCase", () => {      });      it("returns a tab by the index", async () => { -      expect(await sut.queryTabs("1", false)).to.deep.equal([ +      expect(await sut.queryTabs("1", false)).toEqual([          {            index: 1,            title: "Google", @@ -235,12 +234,12 @@ describe("TabCompletionUseCase", () => {          },        ]); -      expect(await sut.queryTabs("10", false)).to.be.empty; -      expect(await sut.queryTabs("-1", false)).to.be.empty; +      expect(await sut.queryTabs("10", false)).toHaveLength(0); +      expect(await sut.queryTabs("-1", false)).toHaveLength(0);      });      it("returns the current tab by % flag", async () => { -      expect(await sut.queryTabs("%", false)).to.deep.equal([ +      expect(await sut.queryTabs("%", false)).toEqual([          {            index: 2,            title: "Yahoo", @@ -252,7 +251,7 @@ describe("TabCompletionUseCase", () => {      });      it("returns the current tab by # flag", async () => { -      expect(await sut.queryTabs("#", false)).to.deep.equal([ +      expect(await sut.queryTabs("#", false)).toEqual([          {            index: 3,            title: "Bing", diff --git a/test/background/completion/impl/filters.test.ts b/test/background/completion/impl/filters.test.ts index b160944..5dd1a93 100644 --- a/test/background/completion/impl/filters.test.ts +++ b/test/background/completion/impl/filters.test.ts @@ -1,5 +1,4 @@  import * as filters from "../../../../src/background/completion/impl/filters"; -import { expect } from "chai";  describe("background/usecases/filters", () => {    describe("filterHttp", () => { @@ -13,7 +12,7 @@ describe("background/usecases/filters", () => {        const filtered = filters.filterHttp(pages);        const urls = filtered.map((x) => x.url); -      expect(urls).to.deep.equal([ +      expect(urls).toEqual([          "https://i-beam.org/bar",          "http://i-beam.net/hoge",          "http://i-beam.net/fuga", @@ -30,7 +29,7 @@ describe("background/usecases/filters", () => {        ];        const filtered = filters.filterBlankTitle(pages); -      expect(filtered).to.deep.equal([{ id: "0", title: "hello" }]); +      expect(filtered).toEqual([{ id: "0", title: "hello" }]);      });    }); @@ -45,7 +44,7 @@ describe("background/usecases/filters", () => {        const filtered = filters.filterByTailingSlash(pages);        const urls = filtered.map((x) => x.url); -      expect(urls).to.deep.equal([ +      expect(urls).toEqual([          "http://i-beam.org/content",          "http://i-beam.org/search",          "http://i-beam.org/search?q=apple_banana_cherry", @@ -64,7 +63,7 @@ describe("background/usecases/filters", () => {          { id: "5", url: "http://i-beam.org/request?q=apple_banana_cherry" },        ];        const filtered = filters.filterByPathname(pages, 10); -      expect(filtered).to.have.lengthOf(6); +      expect(filtered).toHaveLength(6);      });      it("filters by length of pathname", () => { @@ -77,7 +76,7 @@ describe("background/usecases/filters", () => {          { id: "5", url: "http://i-beam.net/search?q=apple_banana_cherry" },        ];        const filtered = filters.filterByPathname(pages, 0); -      expect(filtered).to.deep.equal([ +      expect(filtered).toEqual([          { id: "0", url: "http://i-beam.org/search?q=apple" },          { id: "3", url: "http://i-beam.net/search?q=apple" },        ]); @@ -95,7 +94,7 @@ describe("background/usecases/filters", () => {          { id: "5", url: "http://i-beam.org/request?q=apple_banana_cherry" },        ];        const filtered = filters.filterByOrigin(pages, 10); -      expect(filtered).to.have.lengthOf(6); +      expect(filtered).toHaveLength(6);      });      it("filters by length of pathname", () => { @@ -108,7 +107,7 @@ describe("background/usecases/filters", () => {          { id: "5", url: "http://i-beam.org/request?q=apple_banana_cherry" },        ];        const filtered = filters.filterByOrigin(pages, 0); -      expect(filtered).to.deep.equal([ +      expect(filtered).toEqual([          { id: "0", url: "http://i-beam.org/search?q=apple" },        ]);      });  | 
