-
Notifications
You must be signed in to change notification settings - Fork 0
fix: fetch the profile for telemetry only when telemetry is enabled #240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,8 @@ it("deletes an access token", async ({ expect, prismic, repo, token, host }) => | |
| expect(allAuths.find((a) => a.token === created.token)).toBeUndefined(); | ||
| }); | ||
|
|
||
| it("deletes a write token", async ({ expect, prismic, repo, token, host }) => { | ||
| // Wroom 500s under concurrent same-user write-token creates; keep this sequential. | ||
| it.sequential("deletes a write token", async ({ expect, prismic, repo, token, host }) => { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Write-token tests still race across filesLow Severity
Additional Locations (1)Reviewed by Cursor Bugbot for commit fe45ddd. Configure here. |
||
| const created = await createWriteToken({ repo, token, host }); | ||
|
|
||
| const { stdout, stderr, exitCode } = await prismic("token", ["delete", created.token]); | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.