├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE ├── README.md ├── appveyor.yml ├── index.js ├── lib ├── actor-simulator.js ├── actor.js ├── mailbox.js ├── scheduler-child.js └── scheduler.js ├── package.json └── test ├── actor.js ├── index.js ├── mailbox.js └── scheduler.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.nyc_output 3 | /test/cache 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/appveyor.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/index.js -------------------------------------------------------------------------------- /lib/actor-simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/lib/actor-simulator.js -------------------------------------------------------------------------------- /lib/actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/lib/actor.js -------------------------------------------------------------------------------- /lib/mailbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/lib/mailbox.js -------------------------------------------------------------------------------- /lib/scheduler-child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/lib/scheduler-child.js -------------------------------------------------------------------------------- /lib/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/lib/scheduler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/package.json -------------------------------------------------------------------------------- /test/actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/test/actor.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mailbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/test/mailbox.js -------------------------------------------------------------------------------- /test/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkat/playwright/HEAD/test/scheduler.js --------------------------------------------------------------------------------