-
-
Notifications
You must be signed in to change notification settings - Fork 39
fix: correct NPM_TOKEN secret reference + QoL updates #152
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
1f788fb
refactor: remove ESLint configuration, update dependencies, and enhan…
sclem-tylr 3dcd193
chore: bump version to 2.12.0
sclem-tylr ca11c85
feat: add file upload and binary response handling
sclem-tylr 5f923a3
feat: add test HTML file and enhance response handling for binary data
sclem-tylr 64a26ce
fix: add missing type reference for binary response handling
sclem-tylr 1ae6926
fix: correct indentation for type declaration in handleResponse function
sclem-tylr 7b94825
feat: Missed lint error and enhance Cypress configuration and respons…
sclem-tylr 369eb98
update: update binary response test assertions and enhance clipboard …
sclem-tylr fe4e99a
refactor: simplify error handling in clipboard functions
sclem-tylr 89179c7
feat: test and add endpoint for JSON response with commas and corres…
sclem-tylr 5c30c18
feat: add ArrayBuffer handling in request and response for improved b…
sclem-tylr 931dd4c
bug: enhance RequestPanel functionality with dynamic tab selection an…
sclem-tylr e00df8f
updates: update dependencies and enhance project configuration
sclem-tylr 2dbe2ab
chore: update dependencies and enhance project configuration
sclem-tylr a2ea0cd
feat: enhance Cypress configuration and improve credential handling
sclem-tylr dcbbf44
fix: correct NPM_TOKEN secret reference in release workflow
filiphric e3a48aa
fix: rename commitlint config to .cjs to resolve ESM require cycle
filiphric 3db842f
Merge remote-tracking branch 'origin/main' into updates/updates-added…
filiphric File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,40 @@ | ||
| import { defineConfig } from 'cypress' | ||
| import * as fs from 'fs' | ||
|
|
||
| export default defineConfig({ | ||
| projectId: 'v2x96h', | ||
| expose: { | ||
| enableTimeline: true, | ||
| requestMode: false, | ||
| }, | ||
| allowCypressEnv: true, | ||
| e2e: { | ||
| baseUrl: 'http://localhost:3003', | ||
| defaultCommandTimeout: 1000, | ||
| env: { | ||
| // Hide credentials in UI (headers, auth, body, query, cURL) so values from cy.env() stay masked | ||
| hideCredentials: true, | ||
| // Used only by authorization.cy.ts to verify cy.env() + hideCredentials masking | ||
| testToken: 'secret-env-token-for-test', | ||
| }, | ||
| experimentalRunAllSpecs: true, | ||
| video: process.env.CI ? true : false, | ||
| videoUploadOnPasses: false, | ||
| screenshotOnRunFailure: process.env.CI ? true : false | ||
| screenshotOnRunFailure: process.env.CI ? true : false, | ||
| setupNodeEvents(on, config) { | ||
| on('after:spec', (spec, results) => { | ||
| // Only delete videos for passing tests if video recording is enabled to replace the videoUploadOnPasses | ||
| // If config.video is false, no videos are created, so nothing to delete | ||
| if (config.video && results && results.video) { | ||
| const failures = results.tests?.some((test) => | ||
| test.attempts?.some((attempt) => | ||
| attempt.state === 'failed' | ||
| ) | ||
| ) | ||
| if (!failures && fs.existsSync(results.video)) { | ||
| fs.unlinkSync(results.video) | ||
| } | ||
| } | ||
| }) | ||
| }, | ||
| }, | ||
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
8. Deprecated checkout action
🧑 Team insight☼ ReliabilityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools