From b1ab72c1e63fee5bf704c3a323bb1954344c2b63 Mon Sep 17 00:00:00 2001 From: Leon Kim Date: Tue, 13 Aug 2024 06:31:09 +0900 Subject: [PATCH] feat(doc): add repo URL for ir-docs (#793) * feat(doc): add repo URL for ir-docs * increase jest timeout for creating JS boilerplate --- docs/_category_.json | 13 +++++++++++++ src/cli/cli.integration.ts | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 docs/_category_.json diff --git a/docs/_category_.json b/docs/_category_.json new file mode 100644 index 00000000..8b82b540 --- /dev/null +++ b/docs/_category_.json @@ -0,0 +1,13 @@ +{ + "label": "Gluegun", + "link": null, + "customProps": { + "description": "A delightful toolkit for building Node-based CLIs in TS/JS", + "projectName": "gluegun", + "repoUrl": "https://github.com/infinitered/gluegun", + "sidebar": { + "type": "autogenerated", + "dirName": "gluegun" + } + } +} diff --git a/src/cli/cli.integration.ts b/src/cli/cli.integration.ts index d7f426a0..544b39bd 100644 --- a/src/cli/cli.integration.ts +++ b/src/cli/cli.integration.ts @@ -11,7 +11,7 @@ sinon.stub(console, 'log') const pwd = process.cwd() -jest.setTimeout(5 * 60 * 1000) +jest.setTimeout(20 * 60 * 1000) test('can start the cli', async () => { const c = await cli()