Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
danitseitlin committed Sep 27, 2024
1 parent f528c3b commit 0014cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/integration.executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ describe('Performing Integration testing', async function() {
domain: 'localhost:8080',
apiPath: '/uat',
});
const token = await client.getApiToken('default', '1q2w3e');
const token = await client.getApiToken('superadmin', 'erebus');
console.log(`Got the following token: ${JSON.stringify(token)}`)
const apiToken = await client.generateApiToken(token.access_token);
console.log(`Generated the following report portal token: ${apiToken.access_token}`)
cliArguments.rtoken = apiToken.access_token;
cliArguments.rtoken = token.access_token;
console.log(`List of arguments: ${JSON.stringify(cliArguments)}`)
testcafeServer = await createTestCafe('localhost', 1337, 1338);
});
Expand Down

0 comments on commit 0014cc9

Please sign in to comment.