Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
paula-stacho committed Aug 20, 2024
1 parent 21262be commit 2db67af
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/test/suite/mdbExtensionController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1727,8 +1727,11 @@ suite('MDBExtensionController Test Suite', function () {
"when a user hasn't been shown the survey prompt yet, and they have connections saved",
() => {
[
{ description: 'clicked the button', value: { title: 'Share your thoughts' } },
// { description: 'dismissed', value: undefined },
{
description: 'clicked the button',
value: { title: 'Share your thoughts' },
},
{ description: 'dismissed', value: undefined },
].forEach((reaction) => {
suite(`user ${reaction.description}`, () => {
let connectionsUpdateStub: SinonStub;
Expand Down Expand Up @@ -1774,7 +1777,7 @@ suite('MDBExtensionController Test Suite', function () {
assert(uriParseStub.called);
assert.strictEqual(
uriParseStub.firstCall.args[0],
'https://forms.gle/9viN9wcbsC3zvHyg7',
'https://forms.gle/9viN9wcbsC3zvHyg7'
);
}
});
Expand Down

0 comments on commit 2db67af

Please sign in to comment.