Skip to content

Commit

Permalink
Merge pull request #466 from snyk-tech-services/chore/fix-broken-test
Browse files Browse the repository at this point in the history
chore: fix broken gitlab test
  • Loading branch information
ariadna-roman authored Jan 23, 2024
2 parents dac7dbe + 56959d5 commit 0e01108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scripts/generate-org-data.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ describe('generateOrgImportDataFile Gitlab script', () => {
});
});

it('throws an error when Gitlab Orgs requested without sourceUrl', async () => {
process.env.GITLAB_TOKEN = process.env.TEST_GITLAB_TOKEN;
it('throws an error when Gitlab Orgs requested without valid token', async () => {
process.env.GITLAB_TOKEN = 'invalid-token';
const groupId = 'groupIdExample';

expect(
Expand Down

0 comments on commit 0e01108

Please sign in to comment.