-
Notifications
You must be signed in to change notification settings - Fork 53
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
928 bug failing testcases related to channel and notifications #960
928 bug failing testcases related to channel and notifications #960
Conversation
* fix: signer compatibility with viem and ethers * fix: revert space changes
All looks good. |
File: packages/restapi/tests/lib/channel/subscribeV2.test.ts
File: packages/restapi/tests/lib/notification/channel.test.ts
File: packages/restapi/tests/lib/notification/notification.test.ts
Note: There may be other logical or functional issues in the code that cannot be identified through a code review. It's recommended to thoroughly test the code to ensure its correctness. |
File: packages/restapi/tests/lib/channel/subscribeV2.test.ts
File: packages/restapi/tests/lib/notification/channel.test.ts
File: packages/restapi/tests/lib/notification/notification.test.ts
|
Hey @akp111 still these 3 tc fails for me ENV - stage Let me know if any changes are to be made to .env |
File: packages/restapi/tests/lib/channel/subscribeV2.test.ts import * as path from 'path'; dotenv.config({ path: path.resolve(__dirname, '../../.env') }); import * as PUSH_CHANNEL from '../../../src/lib/channels/'; describe('PUSH_CHANNEL.subscribeV2 functionality', () => { beforeEach(async () => {
}); it('Should subscribe to the channel via V2 without settings', async () => {
}); it('Should unsubscribe to the channel via V2 without settings', async () => {
}); File: packages/restapi/tests/lib/notification/channel.test.ts ...
}); File: packages/restapi/tests/lib/notification/notification.test.ts ... describe('PushAPI.notification functionality', () => {
}); // ... |
Fixes Issue
Fixes testcases
Changes proposed
Check List (Check all the applicable boxes)
Screenshots
Note to reviewers