Skip to content

Commit 75e1a55

Browse files
Merge pull request #1130 from gemini-testing/TESTPLANE-712.fix_empty_css
fix: 'CssSyntaxError: Unclosed string' while using timeTravell
2 parents 6fd3ea5 + 76fe602 commit 75e1a55

File tree

5 files changed

+38
-35
lines changed

5 files changed

+38
-35
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: self-hosted-arc
14+
runs-on: ubuntu-latest
1515

1616
strategy:
1717
matrix:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
publish:
1717
name: Publishing to NPM
18-
runs-on: self-hosted-arc
18+
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v4

.github/workflows/standalone-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
integration-test:
9-
runs-on: self-hosted-arc
9+
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
1212
node-version: [20.18.1]

src/browser/client-scripts/rrweb-record.min.js

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/browser/history/rrweb.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import { SnapshotsData, TestContext } from "../../types";
66
import { runWithoutHistory } from "./index";
77
import path from "path";
88

9+
// Built from branch https://github.com/gemini-testing/rrweb/tree/TESTPLANE-712.syntax_err
10+
// PR: https://github.com/rrweb-io/rrweb/pull/1735
11+
// Issue: https://github.com/rrweb-io/rrweb/issues/1734
912
const rrwebCode = fs.readFileSync(path.join(__dirname, "../client-scripts/rrweb-record.min.js"), "utf-8");
1013

1114
export async function installRrwebAndCollectEvents(

0 commit comments

Comments
 (0)