2025-11-20 IntegrationTest: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Event = eample value test") |
No edit summary |
||
| Line 1: | Line 1: | ||
= Event = | = Event = | ||
eample value test | eample value test | ||
type paramiter | |||
<syntaxhighlight lang="JavaScript"> | |||
object: { | |||
forStageMatching: true, | |||
properties: {} | |||
}, | |||
array: { | |||
forStageMatching: true, | |||
useIsEqual: true, | |||
eventValue: [] | |||
}, | |||
number: { | |||
forStageMatching: true, | |||
value: 1111 | |||
}, | |||
string: { | |||
forStageMatching: true, | |||
value: "hi" | |||
}, | |||
boolean: { | |||
forStageMatching: true, | |||
value: true | |||
} | |||
</syntaxhighlight> | |||
==Empty== | |||
<syntaxhighlight lang="JavaScript"> | |||
EmptyString:{ | |||
value:"" | |||
}, | |||
EmptyArray:{ | |||
forStageMatching: true, | |||
useIsEqual: true, | |||
eventValue: [] | |||
}, | |||
EmptyObject:{ | |||
forStageMatching: true, | |||
value:{} | |||
} | |||
</syntaxhighlight> | |||
Revision as of 07:37, 20 November 2025
Event
eample value test type paramiter
object: {
forStageMatching: true,
properties: {}
},
array: {
forStageMatching: true,
useIsEqual: true,
eventValue: []
},
number: {
forStageMatching: true,
value: 1111
},
string: {
forStageMatching: true,
value: "hi"
},
boolean: {
forStageMatching: true,
value: true
}
Empty
EmptyString:{
value:""
},
EmptyArray:{
forStageMatching: true,
useIsEqual: true,
eventValue: []
},
EmptyObject:{
forStageMatching: true,
value:{}
}