@@ -47,7 +47,7 @@ const blockHash = header.hash;
47
47
/* By Height */
48
48
49
49
describe ( 'chainweb.transaction' , ( ) => {
50
- it . only ( 'get transaction items by height and validate' , async ( ) => {
50
+ it ( 'get transaction items by height and validate' , async ( ) => {
51
51
server . resetHandlers (
52
52
rest . get (
53
53
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut' ,
@@ -83,7 +83,7 @@ describe('chainweb.transaction', () => {
83
83
/* ************************************************************************** */
84
84
/* By Block Hash */
85
85
86
- it . only ( 'get transaction items by blockhash and validate' , async ( ) => {
86
+ it ( 'get transaction items by blockhash and validate' , async ( ) => {
87
87
server . resetHandlers (
88
88
rest . get (
89
89
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut' ,
@@ -129,7 +129,7 @@ describe('chainweb.transaction', () => {
129
129
* return whatever fits into a server page.
130
130
*/
131
131
132
- it . only . each ( [ 0 , 10 , 100 ] ) (
132
+ it . each ( [ 0 , 10 , 100 ] ) (
133
133
'should get transactions by maximum number og blocks %p and validate' ,
134
134
async ( n ) => {
135
135
server . resetHandlers (
@@ -171,7 +171,7 @@ describe('chainweb.transaction', () => {
171
171
} ) ;
172
172
} ,
173
173
) ;
174
- it . only ( 'should get recents when default dept is set and limited to 10' , async ( ) => {
174
+ it ( 'should get recents when default dept is set and limited to 10' , async ( ) => {
175
175
server . resetHandlers (
176
176
rest . get (
177
177
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut' ,
@@ -203,7 +203,7 @@ describe('chainweb.transaction', () => {
203
203
logg ( 'Transactions:' , r ) ;
204
204
expect ( r ) . toBeTruthy ( ) ;
205
205
} ) ;
206
- it . only ( 'should get recents when default dept is set' , async ( ) => {
206
+ it ( 'should get recents when default dept is set' , async ( ) => {
207
207
server . resetHandlers (
208
208
rest . get (
209
209
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut' ,
@@ -235,13 +235,13 @@ describe('chainweb.transaction', () => {
235
235
} ) ;
236
236
237
237
describe ( 'Transaction filter' , ( ) => {
238
- it . only ( 'should filter data and return formatted' , ( ) => {
238
+ it ( 'should filter data and return formatted' , ( ) => {
239
239
const data = filterTxs (
240
240
filterData as unknown as IBlockPayloads < ITransactionElement > [ ] ,
241
241
) ;
242
242
expect ( data ) . toEqual ( filterDataFormatted ) ;
243
243
} ) ;
244
- it . only ( 'should filter data and return formatted without transactions' , ( ) => {
244
+ it ( 'should filter data and return formatted without transactions' , ( ) => {
245
245
const data = filterTxs (
246
246
filterDataNoTx as unknown as IBlockPayloads < ITransactionElement > [ ] ,
247
247
) ;
@@ -266,7 +266,7 @@ describe('Transaction filter', () => {
266
266
*/
267
267
268
268
describe ( 'chainweb.transaction' , ( ) => {
269
- it . only ( 'should get transactions by range n' , async ( ) => {
269
+ it ( 'should get transactions by range n' , async ( ) => {
270
270
server . resetHandlers (
271
271
rest . get (
272
272
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut' ,
0 commit comments