@@ -39,21 +39,21 @@ suite(
3939 } )
4040
4141 describe ( 'Add Intercept parameters test' , function ( ) {
42- xit ( 'can add intercept phase' , async function ( ) {
42+ it ( 'can add intercept phase' , async function ( ) {
4343 const network = await Network ( driver )
4444 const intercept = await network . addIntercept ( new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) )
4545 assert . notEqual ( intercept , null )
4646 } )
4747
48- xit ( 'can add intercept phases' , async function ( ) {
48+ it ( 'can add intercept phases' , async function ( ) {
4949 const network = await Network ( driver )
5050 const intercept = await network . addIntercept (
5151 new AddInterceptParameters ( InterceptPhase . AUTH_REQUIRED , InterceptPhase . BEFORE_REQUEST_SENT ) ,
5252 )
5353 assert . notEqual ( intercept , null )
5454 } )
5555
56- xit ( 'can add string url pattern' , async function ( ) {
56+ it ( 'can add string url pattern' , async function ( ) {
5757 const network = await Network ( driver )
5858 const intercept = await network . addIntercept (
5959 new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) . urlStringPattern (
6363 assert . notEqual ( intercept , null )
6464 } )
6565
66- xit ( 'can add string url patterns' , async function ( ) {
66+ it ( 'can add string url patterns' , async function ( ) {
6767 const network = await Network ( driver )
6868 const intercept = await network . addIntercept (
6969 new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) . urlStringPatterns ( [
7474 assert . notEqual ( intercept , null )
7575 } )
7676
77- xit ( 'can add url pattern' , async function ( ) {
77+ it ( 'can add url pattern' , async function ( ) {
7878 const network = await Network ( driver )
7979 const urlPattern = new UrlPattern ( ) . protocol ( 'http' ) . hostname ( 'localhost' ) . port ( 4444 ) . pathname ( 'basicAuth' )
8080 const intercept = await network . addIntercept (
8383 assert . notEqual ( intercept , null )
8484 } )
8585
86- xit ( 'can add url patterns' , async function ( ) {
86+ it ( 'can add url patterns' , async function ( ) {
8787 const network = await Network ( driver )
8888 const urlPattern1 = new UrlPattern ( )
8989 . protocol ( 'http' )
0 commit comments