Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
test(github-token): prevented special characters from being used in t…
Browse files Browse the repository at this point in the history
…he test token

since `#` is apparently interpretted as a comment and stripped
  • Loading branch information
travi committed Jan 19, 2024
1 parent 91b0a9f commit 5fcc23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/features/step_definitions/github-steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {http, HttpResponse} from 'msw';
import {setupServer} from 'msw/node';

let nextStepsIssueUrls;
const githubToken = any.string();
const githubToken = any.word();
const sshUrl = any.url();
const htmlUrl = any.url();
const userAccount = any.word();
Expand Down

0 comments on commit 5fcc23a

Please sign in to comment.