├── .eslintrc ├── .gitignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── circle.yml ├── demo.js ├── index.js ├── package.json ├── renovate.json └── test └── xvfb_spec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/circle.yml -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/demo.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/renovate.json -------------------------------------------------------------------------------- /test/xvfb_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cypress-io/xvfb/HEAD/test/xvfb_spec.js --------------------------------------------------------------------------------