Skip to content

Commit

Permalink
chore: fix broken gitlab test
Browse files Browse the repository at this point in the history
Signed-off-by: Ariadna Roman-Angheluta <[email protected]>
  • Loading branch information
andradanyirestyan authored and ariadna-roman committed Jan 23, 2024
1 parent dac7dbe commit 56959d5
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 56959d5

Please sign in to comment.