Skip to content

Commit dc0d9d1

Browse files
committed
fix tests
1 parent ee7278c commit dc0d9d1

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

dev-packages/e2e-tests/test-applications/webpack-4/build.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ webpack(
1717
minimize: true,
1818
minimizer: [new TerserPlugin()],
1919
},
20+
performance: {
21+
hints: false,
22+
maxEntrypointSize: 512000,
23+
maxAssetSize: 512000
24+
},
2025
plugins: [new HtmlWebpackPlugin(), new webpack.EnvironmentPlugin(['E2E_TEST_DSN'])],
2126
mode: 'production',
2227
// webpack 4 does not support ES2020 features out of the box, so we need to transpile them

packages/core/test/lib/client.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ describe('Client', () => {
11151115
},
11161116
{
11171117
description: 'third span',
1118-
span_id: 'aa554c1f506b0783',
1118+
span_id: 'aa554c1f506b0784',
11191119
parent_span_id: '9e15bf99fbe4bc80',
11201120
start_timestamp: 1591603196.637835,
11211121
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
@@ -1137,7 +1137,7 @@ describe('Client', () => {
11371137
},
11381138
{
11391139
description: 'third span',
1140-
span_id: 'aa554c1f506b0783',
1140+
span_id: 'aa554c1f506b0784',
11411141
parent_span_id: 'root-span-id',
11421142
start_timestamp: 1591603196.637835,
11431143
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
@@ -1193,7 +1193,7 @@ describe('Client', () => {
11931193
{
11941194
description: 'third span',
11951195
op: 'other op',
1196-
span_id: 'aa554c1f506b0783',
1196+
span_id: 'aa554c1f506b0784',
11971197
parent_span_id: '9e15bf99fbe4bc80',
11981198
start_timestamp: 1591603196.637835,
11991199
trace_id: '86f39e84263a4de99c326acab3bfe3bd',
@@ -1208,7 +1208,7 @@ describe('Client', () => {
12081208
{
12091209
description: 'third span',
12101210
op: 'other op',
1211-
span_id: 'aa554c1f506b0783',
1211+
span_id: 'aa554c1f506b0784',
12121212
parent_span_id: 'root-span-id',
12131213
start_timestamp: 1591603196.637835,
12141214
trace_id: '86f39e84263a4de99c326acab3bfe3bd',

0 commit comments

Comments
 (0)