Skip to content

Commit

Permalink
add touch evnets flag to dev testem config
Browse files Browse the repository at this point in the history
Ensures that tests run in dev (ember test --server) exercise
codepaths for touch events
  • Loading branch information
steveszc committed Mar 26, 2021
1 parent 5c39ce5 commit a28b449
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ module.exports = {
browser_start_timeout: 120,
browser_args: {
Chrome: {
dev: ['--remote-debugging-port=9222'],
dev: ['--touch-events',
'--remote-debugging-port=9222'
],
ci: [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,
Expand Down

0 comments on commit a28b449

Please sign in to comment.