initial commit

This commit is contained in:
2018-12-12 09:51:55 -05:00
commit 5fa7ebe1df
44 changed files with 11136 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
/* eslint-env node */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: [
'Chrome'
],
launch_in_dev: [
'Chrome'
],
browser_args: {
Chrome: {
mode: 'ci',
args: [
'--disable-gpu',
'--headless',
'--remote-debugging-port=9222',
'--window-size=1440,900'
]
},
}
};