expect(Clipboard.isSupported) to be true
Clipboard needs to be supported on all target browsers.
This commit is contained in:
parent
03dee3bfd8
commit
a8411789b3
|
|
@ -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 () {
|
it('incoming clipboard data from the server is copied to the local clipboard', function () {
|
||||||
const text = 'Random string for testing';
|
const text = 'Random string for testing';
|
||||||
const clipboard = new Clipboard();
|
const clipboard = new Clipboard();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue