Skip to content

Commit

Permalink
chore: add info for locally failing travis test
Browse files Browse the repository at this point in the history
  • Loading branch information
escapedcat committed Oct 20, 2023
1 parent 5b4aeaf commit d766ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions @commitlint/travis-cli/src/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand All @@ -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'],
Expand Down Expand Up @@ -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'],
Expand Down

0 comments on commit d766ef9

Please sign in to comment.