@@ -39,21 +39,21 @@ suite(
39
39
} )
40
40
41
41
describe ( 'Add Intercept parameters test' , function ( ) {
42
- xit ( 'can add intercept phase' , async function ( ) {
42
+ it ( 'can add intercept phase' , async function ( ) {
43
43
const network = await Network ( driver )
44
44
const intercept = await network . addIntercept ( new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) )
45
45
assert . notEqual ( intercept , null )
46
46
} )
47
47
48
- xit ( 'can add intercept phases' , async function ( ) {
48
+ it ( 'can add intercept phases' , async function ( ) {
49
49
const network = await Network ( driver )
50
50
const intercept = await network . addIntercept (
51
51
new AddInterceptParameters ( InterceptPhase . AUTH_REQUIRED , InterceptPhase . BEFORE_REQUEST_SENT ) ,
52
52
)
53
53
assert . notEqual ( intercept , null )
54
54
} )
55
55
56
- xit ( 'can add string url pattern' , async function ( ) {
56
+ it ( 'can add string url pattern' , async function ( ) {
57
57
const network = await Network ( driver )
58
58
const intercept = await network . addIntercept (
59
59
new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) . urlStringPattern (
63
63
assert . notEqual ( intercept , null )
64
64
} )
65
65
66
- xit ( 'can add string url patterns' , async function ( ) {
66
+ it ( 'can add string url patterns' , async function ( ) {
67
67
const network = await Network ( driver )
68
68
const intercept = await network . addIntercept (
69
69
new AddInterceptParameters ( InterceptPhase . BEFORE_REQUEST_SENT ) . urlStringPatterns ( [
74
74
assert . notEqual ( intercept , null )
75
75
} )
76
76
77
- xit ( 'can add url pattern' , async function ( ) {
77
+ it ( 'can add url pattern' , async function ( ) {
78
78
const network = await Network ( driver )
79
79
const urlPattern = new UrlPattern ( ) . protocol ( 'http' ) . hostname ( 'localhost' ) . port ( 4444 ) . pathname ( 'basicAuth' )
80
80
const intercept = await network . addIntercept (
83
83
assert . notEqual ( intercept , null )
84
84
} )
85
85
86
- xit ( 'can add url patterns' , async function ( ) {
86
+ it ( 'can add url patterns' , async function ( ) {
87
87
const network = await Network ( driver )
88
88
const urlPattern1 = new UrlPattern ( )
89
89
. protocol ( 'http' )
0 commit comments