* add failing test * assert order of events * defer attaching of iframe till FullSnapshot is done Fixes: https://github.com/rrweb-io/rrweb/issues/567 * correct event order in iframe integration test snapshot * trigger build * trigger build * Move settimeout responsibility to snapshot https://github.com/rrweb-io/rrweb-snapshot/pull/78 * upgrade rrweb-snapshot to 1.1.4 * DRY record tests * cleanup * Upgrade puppeteer to 9.1.1 for (hopefully) more consistent behaviour between CI and development * make input bigger to prevent triggering scroll events * page.waitFor is deprecated more info: https://github.com/puppeteer/puppeteer/issues/6214 * Set os and distro for Travis ci Co-authored-by: yz-yu <yanzhen@smartx.com>
15 lines
148 B
YAML
15 lines
148 B
YAML
language: node_js
|
|
|
|
os: linux
|
|
|
|
dist: focal
|
|
|
|
node_js:
|
|
- 12
|
|
|
|
install:
|
|
- yarn
|
|
|
|
script:
|
|
- xvfb-run --server-args="-screen 0 1920x1080x24" npm test
|