From d766ef9862c1a49a8365828d7a223248a9e3aae8 Mon Sep 17 00:00:00 2001 From: escapedcat Date: Fri, 20 Oct 2023 15:23:01 +0200 Subject: [PATCH] chore: add info for locally failing travis test --- @commitlint/travis-cli/src/cli.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/@commitlint/travis-cli/src/cli.test.ts b/@commitlint/travis-cli/src/cli.test.ts index cd7d7704d1..55433899b4 100644 --- a/@commitlint/travis-cli/src/cli.test.ts +++ b/@commitlint/travis-cli/src/cli.test.ts @@ -57,7 +57,7 @@ test('should throw when on travis ci, but env vars are missing', async () => { ); }); -test('should call git with expected args', async () => { +test('should call git with expected args (test might fail locally)', async () => { const cwd = await git.clone( 'https://github.com/conventional-changelog/commitlint.git', ['--depth=10'], @@ -79,7 +79,7 @@ test('should call git with expected args', async () => { expect(commilint).toEqual(['commitlint']); }); -test('should call git with expected args on pull_request', async () => { +test('should call git with expected args on pull_request (test might fail locally)', async () => { const cwd = await git.clone( 'https://github.com/conventional-changelog/commitlint.git', ['--depth=10'], @@ -107,7 +107,7 @@ test('should call git with expected args on pull_request', async () => { ]); }); -test('should call git with extra expected args on pull_request', async () => { +test('should call git with extra expected args on pull_request (test might fail locally)', async () => { const cwd = await git.clone( 'https://github.com/conventional-changelog/commitlint.git', ['--depth=10'],