chore: undeclared versions/updates (#19649)

This commit is contained in:
Min Idzelis 2025-06-30 23:23:41 -04:00 committed by GitHub
parent a5c431fbf5
commit db0415bbcc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 477 additions and 282 deletions

View file

@ -58,7 +58,8 @@ describe('get asset filename', () => {
});
describe('copy image to clipboard', () => {
it('should not allow copy image to clipboard', () => {
expect(canCopyImageToClipboard()).toEqual(false);
// This test is dubious, as it totally on the environment where the test is run which is mocked.
it('should allow copy image to clipboard', () => {
expect(canCopyImageToClipboard()).toEqual(true);
});
});