Skip to content

Commit

Permalink
Fix test; start browser with clipboar-read perm
Browse files Browse the repository at this point in the history
  • Loading branch information
camertron committed Sep 28, 2023
1 parent afddae7 commit 80570f3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
27 changes: 17 additions & 10 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ describe('clipboard-copy element', function () {
describe('target element', function () {
const nativeClipboard = navigator.clipboard
let whenCopied

beforeEach(function () {
const container = document.createElement('div')
container.innerHTML = `
Expand All @@ -56,16 +57,15 @@ describe('clipboard-copy element', function () {
copiedText = text
return Promise.resolve()
},
readText() {
return Promise.resolve(copiedText)
},
})

whenCopied = new Promise(resolve => {
document.addEventListener('clipboard-copy', () => resolve(copiedText), {
once: true,
})

document.addEventListener('clipboard-copy-nothing', () => resolve(null), {
once: true,
})
})
})

Expand Down Expand Up @@ -162,14 +162,21 @@ describe('clipboard-copy element', function () {

const button = document.querySelector('clipboard-copy')
button.setAttribute('aria-disabled', 'true')
let fired = false;
document.addEventListener('clipboard-copy', () => { fired = true }, { once: true })


let fired = false
document.addEventListener(
'clipboard-copy',
() => {
fired = true
},
{once: true},
)

button.click()

await new Promise(setTimeout)
assert.equal(fired, false);
assert.equal(null, text)
assert.equal(fired, false)
assert.equal(null, await navigator.clipboard.readText())
})
})

Expand Down
7 changes: 5 additions & 2 deletions web-test-runner.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import {esbuildPlugin} from '@web/dev-server-esbuild'
import {playwrightLauncher} from '@web/test-runner-playwright'
const browser = product =>
const getBrowser = product =>
playwrightLauncher({
product,
createBrowserContext: ({browser}) => {
return browser.newContext({permissions: ['clipboard-read']})
},
})

export default {
files: ['test/*'],
nodeResolve: true,
plugins: [esbuildPlugin({ts: true, target: 'es2020'})],
browsers: [browser('chromium')],
browsers: [getBrowser('chromium')],
testFramework: {
config: {
timeout: 1000,
Expand Down

0 comments on commit 80570f3

Please sign in to comment.