We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44feeb4 commit 09aeba6Copy full SHA for 09aeba6
dapp/tests/e2e/app.test.js
@@ -612,10 +612,10 @@ describe('sendEmail', () => {
612
expect(result).toHaveProperty('protected-data-results');
613
expect(result['protected-data-results']).toHaveLength(2);
614
615
- // Verify each dataset result
+ // Verify each protected data result
616
result['protected-data-results'].forEach((datasetResult, index) => {
617
expect(datasetResult).toHaveProperty('index', index + 1);
618
- expect(datasetResult).toHaveProperty('dataset');
+ expect(datasetResult).toHaveProperty('protectedData');
619
expect(datasetResult).toHaveProperty('response');
620
expect(datasetResult.response).toHaveProperty('status', 200);
621
expect(datasetResult.response).toHaveProperty('message');
0 commit comments