diff --git a/test/cli.spec.ts b/test/cli.spec.ts index 9090129..955fd33 100644 --- a/test/cli.spec.ts +++ b/test/cli.spec.ts @@ -62,7 +62,8 @@ describe("CLI Options", function () { expect(stat(output)).to.eventually.be.rejected; }); - it("-d option should override -o", async () => { + it("-d option should override -o", async function () { + this.timeout(1e4); // ensure CI does not fail if exec is slow await aexec(`${cliPfx} tampermonkey -p ${pkg} -o ${output} -d`); expect(stat(output)).to.eventually.be.rejected; });