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 aa3d369 commit 199bb7eCopy full SHA for 199bb7e
packages/connection-form/src/components/advanced-options-tabs/csfle-tab/csfle-tab.spec.tsx
@@ -385,12 +385,19 @@ describe('In-Use Encryption', function () {
385
);
386
}
387
388
- const selector = within(card).getByTestId('csfle-kms-card-name');
+ const selector = within(card).getByTestId<HTMLInputElement>(
389
+ 'csfle-kms-card-name'
390
+ );
391
userEvent.clear(selector);
392
if (value !== '') {
393
userEvent.type(selector, value);
394
395
userEvent.keyboard('{enter}');
396
+
397
+ expect(selector.value).equals(
398
+ value,
399
+ 'Expected the input to have the updated value'
400
401
402
403
it('allows to have multiple KMS providers from same type', async function () {
0 commit comments