Skip to content

Commit

Permalink
fix: remove test only
Browse files Browse the repository at this point in the history
  • Loading branch information
badurinantun committed Jul 13, 2022
1 parent c8f3377 commit 5add341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/defaultProvider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('defaultProvider', () => {
return expect(transactionReceipt).toHaveProperty('actual_fee');
});

test.only('callContract()', () => {
test('callContract()', () => {
return expect(
provider.callContract({
contractAddress: exampleContractAddress,
Expand All @@ -96,7 +96,7 @@ describe('defaultProvider', () => {
).resolves.not.toThrow();
});

test.only('callContract() - gateway error', async () => {
test('callContract() - gateway error', async () => {
const promise = provider.callContract({
contractAddress: exampleContractAddress,
entrypoint: 'non_existent_entrypoint',
Expand Down

0 comments on commit 5add341

Please sign in to comment.