File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/unit/editors/protocol104/foundation Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ describe('foundation', () => {
51
51
'ACT' ,
52
52
'30'
53
53
) ;
54
- expect ( actions . length ) . to . be . equals ( 0 ) ;
54
+ expect ( actions ) . to . be . empty ;
55
55
expect ( actionEvent ) . to . have . not . been . called ;
56
56
} ) ;
57
57
@@ -62,7 +62,7 @@ describe('foundation', () => {
62
62
'58'
63
63
) ;
64
64
expect ( actions . length ) . to . be . equals ( 1 ) ;
65
- expect ( actionEvent ) . to . have . been . callCount ( 1 ) ;
65
+ expect ( actionEvent ) . to . have . been . calledOnce ;
66
66
} ) ;
67
67
68
68
it ( 'returns a multiple address create action' , ( ) => {
@@ -102,7 +102,7 @@ describe('foundation', () => {
102
102
'ISC' ,
103
103
'62'
104
104
) ;
105
- expect ( actions . length ) . to . be . equals ( 0 ) ;
105
+ expect ( actions ) . to . be . empty ;
106
106
expect ( actionEvent ) . to . have . not . been . called ;
107
107
} ) ;
108
108
@@ -113,7 +113,7 @@ describe('foundation', () => {
113
113
'59'
114
114
) ;
115
115
expect ( actions . length ) . to . be . equals ( 1 ) ;
116
- expect ( actionEvent ) . to . have . been . callCount ( 2 ) ;
116
+ expect ( actionEvent ) . to . have . been . calledTwice ;
117
117
} ) ;
118
118
} ) ;
119
119
} ) ;
You can’t perform that action at this time.
0 commit comments