Skip to content

Commit 3bc6809

Browse files
authored
test: disable clipboard tests for WOA (electron#22374)
1 parent c4f272e commit 3bc6809

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

spec/api-clipboard-spec.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ const { clipboard, nativeImage } = require('electron')
77
describe('clipboard module', () => {
88
const fixtures = path.resolve(__dirname, 'fixtures')
99

10+
// FIXME(zcbenz): Clipboard tests are failing on WOA.
11+
beforeEach(function () {
12+
if (process.platform === 'win32' && process.arch === 'arm64') {
13+
this.skip()
14+
}
15+
})
16+
1017
describe('clipboard.readImage()', () => {
1118
it('returns NativeImage instance', () => {
1219
const p = path.join(fixtures, 'assets', 'logo.png')

0 commit comments

Comments
 (0)