Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Apr 19, 2024
1 parent 5238461 commit 3211a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/addon-clipboard/test/ClipboardAddon.api.ts
Expand Up @@ -75,7 +75,7 @@ describe('ClipboardAddon', () => {
`);
await page.evaluate(() => window.navigator.clipboard.writeText('hello world'));
await writeSync(page, `\x1b]52;c;?\x07`);
assert.deepEqual(await page.evaluate(`window.data`), [testDataEncoded]);
assert.deepEqual(await page.evaluate(`window.data`), [`\x1b]52;c;${testDataEncoded}\x07`]);
});
it('clear clipboard', async () => {
await writeSync(page, `\x1b]52;c;!\x07`);
Expand Down

0 comments on commit 3211a4d

Please sign in to comment.