@@ -173,8 +173,7 @@ describe("AppConfigurationClient", () => {
173
173
} ) ;
174
174
175
175
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
176
- it . skip ( "accepts operation options" , async ( ctx ) => {
177
- if ( isPlaybackMode ( ) ) ctx . skip ( ) ;
176
+ it . skip ( "accepts operation options" , async ( ) => {
178
177
const key = recorder . variable (
179
178
"addConfigTestTwice" ,
180
179
`addConfigTestTwice${ Math . floor ( Math . random ( ) * 1000 ) } ` ,
@@ -327,7 +326,7 @@ describe("AppConfigurationClient", () => {
327
326
} ) ;
328
327
329
328
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
330
- it . skip ( "accepts operation options" , { skip : isPlaybackMode ( ) } , async ( ) => {
329
+ it . skip ( "accepts operation options" , async ( ) => {
331
330
// Recorder checks for the recording and complains before core-rest-pipeline could throw the AbortError (Recorder v2 should help here)
332
331
const key = recorder . variable (
333
332
"deleteConfigTest" ,
@@ -455,7 +454,7 @@ describe("AppConfigurationClient", () => {
455
454
} ) ;
456
455
457
456
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
458
- it . skip ( "accepts operation options" , { skip : isPlaybackMode ( ) } , async ( ) => {
457
+ it . skip ( "accepts operation options" , async ( ) => {
459
458
const key = recorder . variable (
460
459
"getConfigTest" ,
461
460
`getConfigTest${ Math . floor ( Math . random ( ) * 1000 ) } ` ,
@@ -1134,7 +1133,7 @@ describe("AppConfigurationClient", () => {
1134
1133
} ) ;
1135
1134
1136
1135
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
1137
- it . skip ( "accepts operation options" , { skip : isPlaybackMode ( ) } , async ( ) => {
1136
+ it . skip ( "accepts operation options" , async ( ) => {
1138
1137
await assertThrowsAbortError ( async ( ) => {
1139
1138
const settingsIterator = client . listConfigurationSettings ( {
1140
1139
requestOptions : { timeout : 1 } ,
@@ -1310,7 +1309,7 @@ describe("AppConfigurationClient", () => {
1310
1309
} ) ;
1311
1310
1312
1311
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
1313
- it . skip ( "accepts operation options" , { skip : isPlaybackMode ( ) } , async ( ) => {
1312
+ it . skip ( "accepts operation options" , async ( ) => {
1314
1313
await assertThrowsAbortError ( async ( ) => {
1315
1314
const iter = client . listRevisions ( { labelFilter : labelA , requestOptions : { timeout : 1 } } ) ;
1316
1315
await iter . next ( ) ;
@@ -1582,7 +1581,7 @@ describe("AppConfigurationClient", () => {
1582
1581
} ) ;
1583
1582
1584
1583
// Skipping all "accepts operation options flaky tests" https://github.com/Azure/azure-sdk-for-js/issues/26447
1585
- it . skip ( "accepts operation options" , { skip : isPlaybackMode ( ) } , async ( ) => {
1584
+ it . skip ( "accepts operation options" , async ( ) => {
1586
1585
const key = recorder . variable (
1587
1586
`setConfigTestNA` ,
1588
1587
`setConfigTestNA${ Math . floor ( Math . random ( ) * 1000 ) } ` ,
0 commit comments