-
Notifications
You must be signed in to change notification settings - Fork 77
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
GRPC provider - Main.2.5 #742
base: main
Are you sure you want to change the base?
Conversation
Coverage report for experimental massa-web3
Show new covered files 🐣
Show files with reduced coverage 🔻
Test suite run success134 tests passing in 15 suites. Report generated by 🧪jest coverage report action from 94f326e |
src/smartContracts/smartContract.ts
Outdated
@@ -64,7 +64,7 @@ export class SmartContract { | |||
target: this.address, | |||
...options, | |||
} | |||
return this.provider.readSC(readParams) | |||
return this.provider.readSC(readParams) as Promise<ReadSCData> |
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.
this cast could be removed if addressing the previous comment
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.
done
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.
so we can remove the cast ? ^^
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.
my bad yes
describe('Provider GRPC tests', () => { | ||
test('getNodeStatus', async () => { | ||
const status = (await grpcProvider.getNodeStatus()) as PublicStatus | ||
expect(status.getConfig()).toBeDefined() | ||
expect(status.getCurrentCycle()).toBeDefined() | ||
expect(status.getCurrentTime()).toBeDefined() | ||
expect(status.getCurrentCycleTime()).toBeDefined() | ||
expect(status.getLastExecutedFinalSlot()).toBeDefined() | ||
expect(status.getLastExecutedSpeculativeSlot()).toBeDefined() | ||
expect(status.getFinalStateFingerprint()).toBeDefined() | ||
expect(status.getChainId()).toBeDefined() | ||
expect(status.getMinimalFees()).toBeDefined() | ||
}) | ||
}) |
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.
It would be nice to have more tests. I suggest to put them in a dedicated file. this can be done in a followup issue
|
No description provided.