diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-27 13:14:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-27 13:14:40 +0000 |
commit | d19ec80a1e0b6455db6992f7c66aebb4b44f894e (patch) | |
tree | cbde9e656e83ee376554e89d3a2147c5ab7eb23c /test | |
parent | ebfbe315455f5a38a2f0b8aeffc70ec85bc9e8d8 (diff) | |
parent | f2637dcf46e05af93566bb683b2d7ec830761386 (diff) |
Merge pull request #945 from ueokande/stabilize-unit-test
Stabilize NavigationPresenterImpl test
Diffstat (limited to 'test')
-rw-r--r-- | test/content/presenters/NavigationPresenter.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/content/presenters/NavigationPresenter.test.ts b/test/content/presenters/NavigationPresenter.test.ts index af3b487..8d003c4 100644 --- a/test/content/presenters/NavigationPresenter.test.ts +++ b/test/content/presenters/NavigationPresenter.test.ts @@ -1,7 +1,9 @@ import { NavigationPresenterImpl } from "../../../src/content/presenters/NavigationPresenter"; import { expect } from "chai"; -describe("NavigationPresenterImpl", () => { +describe("NavigationPresenterImpl", function () { + this.timeout(5000); + let sut: NavigationPresenterImpl; const testRel = (done: () => void, rel: string, html: string) => { |