@@ -94,6 +94,7 @@ describe('resolveOneOf', () => {
9494 [ { default : undefined , param : 'my_key' , value : '42' } ] ,
9595 true ,
9696 ) ,
97+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
9798 ) . toStrictEqual ( { my_key : '42' } )
9899 } )
99100
@@ -106,6 +107,7 @@ describe('resolveOneOf', () => {
106107 ] ,
107108 true ,
108109 ) ,
110+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
109111 ) . toStrictEqual ( { my_key_2 : '42' } )
110112 } )
111113
@@ -118,6 +120,7 @@ describe('resolveOneOf', () => {
118120 ] ,
119121 true ,
120122 ) ,
123+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
121124 ) . toStrictEqual ( { my_key_1 : '42' } )
122125
123126 expect (
@@ -128,6 +131,7 @@ describe('resolveOneOf', () => {
128131 ] ,
129132 true ,
130133 ) ,
134+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
131135 ) . toStrictEqual ( { my_key_1 : '42' } )
132136 } )
133137
@@ -168,6 +172,7 @@ describe('resolveOneOf', () => {
168172 ] ,
169173 false ,
170174 ) ,
175+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
171176 ) . toStrictEqual ( { my_key_1 : false } )
172177 } )
173178} )
@@ -201,6 +206,7 @@ describe('unmarshalArrayOfObject', () => {
201206 it ( 'unmarshals valid array of object' , ( ) => {
202207 expect (
203208 unmarshalArrayOfObject (
209+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
204210 [ { my_number : 42 } , { my_number : 94 } ] ,
205211 unmarshaller ,
206212 ) ,
@@ -229,6 +235,7 @@ describe('unmarshalMapOfObject', () => {
229235 it ( 'unmarshals valid array of object' , ( ) => {
230236 expect (
231237 unmarshalMapOfObject (
238+ /* biome-ignore lint/style/useNamingConvention: test data uses snake_case intentionally */
232239 { 'first-key' : { my_number : 42 } , 'second-key' : { my_number : 94 } } ,
233240 unmarshaller ,
234241 ) ,
0 commit comments