-
Notifications
You must be signed in to change notification settings - Fork 901
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
VertexAI: add test script to run unit tests without updating mock responses #8342
Conversation
|
9ac42d1
to
2e9bd88
Compare
Size Report 1Affected ProductsNo changes between base commit (ed1c993) and merge commit (fdd8bbe).Test Logs |
Size Analysis Report 1Affected ProductsNo changes between base commit (ed1c993) and merge commit (fdd8bbe).Test Logs |
packages/vertexai/package.json
Outdated
@@ -37,6 +37,7 @@ | |||
"testsetup": "yarn update-responses && yarn ts-node ./test-utils/convert-mocks.ts", | |||
"test": "run-p --npm-path npm lint test:browser", | |||
"test:ci": "yarn testsetup && node ../../scripts/run_tests_in_ci.js -s test", | |||
"test:debug": "karma start --single-run", |
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.
I feel that :debug
is misleading since we are not enabling debugging capabilities, and instead just skip the re-clone
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.
I see. How about :skip-clone
?
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.
Yeah I think that would be clearer
This adds a new script in the
vertexai
package that runs unit tests without updating mock responses.