Remove Performance Test Project From C# Repository#4
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the JavaScript/k6 performance test assets from the C# REST API test repository as part of moving performance coverage to a dedicated JavaScript project.
Changes:
- Deleted the k6 performance test scripts for ping, auth, and booking flows.
- Removed shared k6 config/helper files and the performance test
package.json. - Deleted the GitHub Actions workflow that executed the performance tests.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/run-performance-tests.yaml |
Removes CI execution for the relocated performance tests. |
Restful.Booker.Api.PerformanceTests/package.json |
Removes npm/k6 script definitions for the performance test project. |
Restful.Booker.Api.PerformanceTests/config/environments.js |
Removes performance test environment configuration. |
Restful.Booker.Api.PerformanceTests/config/thresholds.js |
Removes shared k6 threshold definitions. |
Restful.Booker.Api.PerformanceTests/helpers/auth-helper.js |
Removes helper used by k6 booking tests for auth token retrieval. |
Restful.Booker.Api.PerformanceTests/tests/auth-performance-tests.js |
Removes auth performance test script. |
Restful.Booker.Api.PerformanceTests/tests/booking-performance-tests.js |
Removes booking CRUD performance test script. |
Restful.Booker.Api.PerformanceTests/tests/ping-performance-tests.js |
Removes ping performance test script. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull Request
Description
The performance test project has been removed from the C# test repository as part of a repository reorganization effort. This change cleans up the C# solution to focus on its core REST API test functionality. The performance tests have been relocated to a dedicated JavaScript project.
Changes Made