diff --git a/.size-limit.cjs b/.size-limit.cjs
index d5fbe642..d418d11d 100644
--- a/.size-limit.cjs
+++ b/.size-limit.cjs
@@ -24,7 +24,7 @@ module.exports = [
{
name: 'artifacts/splunk-otel-web.js',
- limit: '42 kB',
+ limit: '43 kB',
path: './packages/web/dist/artifacts/splunk-otel-web.js',
},
diff --git a/packages/integration-tests/src/pages/record-page.ts b/packages/integration-tests/src/pages/record-page.ts
index f1ab35ae..0923f194 100644
--- a/packages/integration-tests/src/pages/record-page.ts
+++ b/packages/integration-tests/src/pages/record-page.ts
@@ -45,8 +45,8 @@ export class RecordPage {
async flushData() {
await this.page.evaluate(() => {
- if (window.SplunkRum) {
- window.SplunkRum._processor.forceFlush()
+ if ((window as any).SplunkRum) {
+ ;(window as any).SplunkRum._processor.forceFlush()
}
})
}
diff --git a/packages/integration-tests/src/server/render-agent.ts b/packages/integration-tests/src/server/render-agent.ts
index 971afe0e..6f3a829e 100644
--- a/packages/integration-tests/src/server/render-agent.ts
+++ b/packages/integration-tests/src/server/render-agent.ts
@@ -20,14 +20,16 @@ export const RENDER_AGENT_TEMPLATE = `
+
+