Skip to content

Commit

Permalink
Fix variable name (#23021)
Browse files Browse the repository at this point in the history
  • Loading branch information
Biki-das authored Dec 23, 2021
1 parent a8e9bbe commit 2021234
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test.describe('Profiler', () => {
});
}

async function clickButtonAndVerifySnapshotSelecetorText(
async function clickButtonAndVerifySnapshotSelectorText(
buttonTagName,
expectedText
) {
Expand Down Expand Up @@ -72,31 +72,31 @@ test.describe('Profiler', () => {
const text = await getSnapshotSelectorText();
expect(text).toBe('1 / 3');

await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-NextButton',
'2 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-NextButton',
'3 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-NextButton',
'1 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-PreviousButton',
'3 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-PreviousButton',
'2 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-PreviousButton',
'1 / 3'
);
await clickButtonAndVerifySnapshotSelecetorText(
await clickButtonAndVerifySnapshotSelectorText(
'SnapshotSelector-PreviousButton',
'3 / 3'
);
Expand Down

0 comments on commit 2021234

Please sign in to comment.