mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
* Add test to frameworks * Add example for Docusaurus v2 * Add example for ionic-angular * Update READMEs * Use existing versions * Reset yarn.lock * Add schema validation and add missing Scully.io logo
12 lines
265 B
JavaScript
12 lines
265 B
JavaScript
const config = require('./protractor.conf').config;
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
args: ['--headless', '--no-sandbox', '--disable-gpu'],
|
|
binary: require('puppeteer').executablePath(),
|
|
},
|
|
};
|
|
|
|
exports.config = config;
|