-
-
Notifications
You must be signed in to change notification settings - Fork 5
Clean #21
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
base: main
Are you sure you want to change the base?
Clean #21
Conversation
…moved "some.test" file
|
@O-Bots is attempting to deploy a commit to the Compass Team on Vercel. A member of the Team first needs to authorize it. |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
| import * as constants from "common/envs/constants"; | ||
| import { AuthedUser } from "api/helpers/endpoint"; | ||
|
|
||
| describe.skip('getSupabaseToken', () => { |
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.
Change to something like that:
| describe.skip('getSupabaseToken', () => { | |
| describe('getSupabaseToken', () => { | |
| it('skip', () => {}) |
To fix:
FAIL tests/unit/get-supabase-token.unit.test.ts
● Test suite failed to run
Your test suite must contain at least one test.
After that, all the tests should pass.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
All tests pass! Is it ready for review or do you want to add or modify some tests? |
Clean