expect(Clipboard.isSupported) to be true

Clipboard needs to be supported on all target browsers.
This commit is contained in:
Seth Nickell 2021-07-12 16:25:06 -10:00
parent 03dee3bfd8
commit a8411789b3
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@ describe('Automatic Clipboard Sync', function () {
});
}
it('is supported on all target browsers', function () {
expect(Clipboard.isSupported).to.be.true;
});
it('incoming clipboard data from the server is copied to the local clipboard', function () {
const text = 'Random string for testing';
const clipboard = new Clipboard();