aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-12-27 13:14:40 +0000
committerGitHub <noreply@github.com>2020-12-27 13:14:40 +0000
commitd19ec80a1e0b6455db6992f7c66aebb4b44f894e (patch)
treecbde9e656e83ee376554e89d3a2147c5ab7eb23c /test
parentebfbe315455f5a38a2f0b8aeffc70ec85bc9e8d8 (diff)
parentf2637dcf46e05af93566bb683b2d7ec830761386 (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.ts4
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) => {