@@ -1274,9 +1274,9 @@ describe('breaking change ruleset configuration', () => {
12741274 } ;
12751275 const results = await TestHelpers . runRulesWithInputs (
12761276 [
1277- await BreakingChangesRuleset . fromOpticConfig ( {
1277+ ( await BreakingChangesRuleset . fromOpticConfig ( {
12781278 exclude_operations_with_extension : 'x-legacy' ,
1279- } ) as any ,
1279+ } ) ) as any ,
12801280 ] ,
12811281 beforeJson ,
12821282 afterJson
@@ -1311,16 +1311,16 @@ describe('breaking change ruleset configuration', () => {
13111311 } ;
13121312 const results = await TestHelpers . runRulesWithInputs (
13131313 [
1314- await BreakingChangesRuleset . fromOpticConfig ( {
1314+ ( await BreakingChangesRuleset . fromOpticConfig ( {
13151315 exclude_operations_with_extension : [
13161316 { 'x-stability-level' : [ 'draft' ] } ,
13171317 ] ,
1318- } ) as any ,
1318+ } ) ) as any ,
13191319 ] ,
13201320 beforeJson ,
13211321 afterJson
13221322 ) ;
1323- expect ( results . length ) . toBe ( 0 )
1323+ expect ( results . length ) . toBe ( 0 ) ;
13241324 } ) ;
13251325
13261326 test ( 'breaking changes applies a matches function for object extension value mismatch' , async ( ) => {
@@ -1350,19 +1350,19 @@ describe('breaking change ruleset configuration', () => {
13501350 } ;
13511351 const results = await TestHelpers . runRulesWithInputs (
13521352 [
1353- await BreakingChangesRuleset . fromOpticConfig ( {
1353+ ( await BreakingChangesRuleset . fromOpticConfig ( {
13541354 exclude_operations_with_extension : [
13551355 { 'x-stability-level' : [ 'draft' ] } ,
13561356 ] ,
1357- } ) as any ,
1357+ } ) ) as any ,
13581358 ] ,
13591359 beforeJson ,
13601360 afterJson
13611361 ) ;
13621362 expect ( results . length ) . toEqual ( 1 ) ;
13631363 } ) ;
13641364
1365- test ( 'breaking changes applies a matches function for object extension value missing' , async ( ) => {
1365+ test ( 'breaking changes applies a matches function for object extension value missing' , async ( ) => {
13661366 const beforeJson : OpenAPIV3 . Document = {
13671367 ...TestHelpers . createEmptySpec ( ) ,
13681368 paths : {
@@ -1388,11 +1388,11 @@ describe('breaking change ruleset configuration', () => {
13881388 } ;
13891389 const results = await TestHelpers . runRulesWithInputs (
13901390 [
1391- await BreakingChangesRuleset . fromOpticConfig ( {
1391+ ( await BreakingChangesRuleset . fromOpticConfig ( {
13921392 exclude_operations_with_extension : [
13931393 { 'x-stability-level' : [ 'draft' ] } ,
13941394 ] ,
1395- } ) as any ,
1395+ } ) ) as any ,
13961396 ] ,
13971397 beforeJson ,
13981398 afterJson
0 commit comments