Skip to content

Commit c2da29e

Browse files
committed
Remove .only
1 parent 5c3e811 commit c2da29e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/libs/chainwebjs/src/tests/transactions.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const blockHash = header.hash;
4747
/* By Height */
4848

4949
describe('chainweb.transaction', () => {
50-
it.only('get transaction items by height and validate', async () => {
50+
it('get transaction items by height and validate', async () => {
5151
server.resetHandlers(
5252
rest.get(
5353
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut',
@@ -83,7 +83,7 @@ describe('chainweb.transaction', () => {
8383
/* ************************************************************************** */
8484
/* By Block Hash */
8585

86-
it.only('get transaction items by blockhash and validate', async () => {
86+
it('get transaction items by blockhash and validate', async () => {
8787
server.resetHandlers(
8888
rest.get(
8989
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut',
@@ -129,7 +129,7 @@ describe('chainweb.transaction', () => {
129129
* return whatever fits into a server page.
130130
*/
131131

132-
it.only.each([0, 10, 100])(
132+
it.each([0, 10, 100])(
133133
'should get transactions by maximum number og blocks %p and validate',
134134
async (n) => {
135135
server.resetHandlers(
@@ -171,7 +171,7 @@ describe('chainweb.transaction', () => {
171171
});
172172
},
173173
);
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 () => {
175175
server.resetHandlers(
176176
rest.get(
177177
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut',
@@ -203,7 +203,7 @@ describe('chainweb.transaction', () => {
203203
logg('Transactions:', r);
204204
expect(r).toBeTruthy();
205205
});
206-
it.only('should get recents when default dept is set', async () => {
206+
it('should get recents when default dept is set', async () => {
207207
server.resetHandlers(
208208
rest.get(
209209
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut',
@@ -235,13 +235,13 @@ describe('chainweb.transaction', () => {
235235
});
236236

237237
describe('Transaction filter', () => {
238-
it.only('should filter data and return formatted', () => {
238+
it('should filter data and return formatted', () => {
239239
const data = filterTxs(
240240
filterData as unknown as IBlockPayloads<ITransactionElement>[],
241241
);
242242
expect(data).toEqual(filterDataFormatted);
243243
});
244-
it.only('should filter data and return formatted without transactions', () => {
244+
it('should filter data and return formatted without transactions', () => {
245245
const data = filterTxs(
246246
filterDataNoTx as unknown as IBlockPayloads<ITransactionElement>[],
247247
);
@@ -266,7 +266,7 @@ describe('Transaction filter', () => {
266266
*/
267267

268268
describe('chainweb.transaction', () => {
269-
it.only('should get transactions by range n', async () => {
269+
it('should get transactions by range n', async () => {
270270
server.resetHandlers(
271271
rest.get(
272272
'https://api.chainweb.com/chainweb/0.0/mainnet01/cut',

0 commit comments

Comments
 (0)