jest-clipboard
jest-clipboard provides a easy way to test code against the clipboard API.
Usage
const writeToClipboard = async () => {
await navigator.clipboard.writeText('text from clipboard');
};
describe('Clipboard', () => {
beforeEach(() => {
setUpClipboard('text from clipboard');
});
afterEach(() => {
tearDownClipboard();
});
it('should use text from clipboard', async () => {
jest.spyOn(global.navigator.clipboard, 'writeText');
await writeToClipboard();
expect(global.navigator.clipboard.writeText).toHaveBeenCalledWith('text from clipboard');
});
});
Limitation
Currently the supported methods from the clipboard api are related to the text mode only.
Further reading