Skip to content

Commit ae32d72

Browse files
committed
test: fix param args
1 parent a6e8def commit ae32d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jest/install.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("install and uninstall", () => {
1414

1515
it("installs project package", async () => {
1616
// creates dist/<pkg>.tar
17-
await ctx.runEask("package",
17+
await ctx.runEask("package", { timeout: 40000 },
1818
// See https://github.com/emacs-eask/cli/issues/11.
1919
cmp(await emacsVersion(), "28.1") == -1);
2020
// installs dependencies and generated package
@@ -41,7 +41,7 @@ describe("install and uninstall", () => {
4141
});
4242

4343
it("uninstalls project package", async () => {
44-
await ctx.runEask("uninstall",
44+
await ctx.runEask("uninstall", { timeout: 40000 },
4545
// See https://github.com/emacs-eask/cli/issues/11.
4646
cmp(await emacsVersion(), "28.1") == -1);
4747
const { stderr } = await ctx.runEask("list");

0 commit comments

Comments
 (0)