File tree 1 file changed +8
-2
lines changed
integration-tests/playwright
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ const {
17
17
TEST_SOURCE_START ,
18
18
TEST_TYPE ,
19
19
TEST_SOURCE_FILE ,
20
- TEST_CONFIGURATION_BROWSER_NAME ,
20
+ TEST_PARAMETERS ,
21
+ TEST_BROWSER_NAME ,
21
22
TEST_IS_NEW ,
22
23
TEST_IS_RETRY ,
23
24
TEST_EARLY_FLAKE_ENABLED ,
@@ -153,7 +154,12 @@ versions.forEach((version) => {
153
154
assert . propertyVal ( testEvent . content . meta , 'test.customtag' , 'customvalue' )
154
155
assert . propertyVal ( testEvent . content . meta , 'test.customtag2' , 'customvalue2' )
155
156
// Adds the browser used
156
- assert . propertyVal ( testEvent . content . meta , TEST_CONFIGURATION_BROWSER_NAME , 'chromium' )
157
+ assert . propertyVal ( testEvent . content . meta , TEST_BROWSER_NAME , 'chromium' )
158
+ assert . propertyVal (
159
+ testEvent . content . meta ,
160
+ TEST_PARAMETERS ,
161
+ JSON . stringify ( { arguments : { browser : 'chromium' } , metadata : { } } )
162
+ )
157
163
assert . exists ( testEvent . content . metrics [ DD_HOST_CPU_COUNT ] )
158
164
} )
159
165
You can’t perform that action at this time.
0 commit comments