Skip to content

Commit

Permalink
chore: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Sep 5, 2023
1 parent 61c6b5f commit f361dab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/turbo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('Node environment', () => {
});
});

describe.only('TurboUnauthenticatedNodeClient', () => {
describe('TurboUnauthenticatedNodeClient', () => {
let turbo: TurboUnauthenticatedClient;

before(async () => {
Expand Down Expand Up @@ -130,7 +130,7 @@ describe('Node environment', () => {
expect(+winc).to.be.greaterThan(0);
});

describe.only('uploadSignedDataItems()', async () => {
describe('uploadSignedDataItems()', async () => {
it('supports sending a signed Buffer to turbo', async () => {
const jwk = await Arweave.crypto.generateJWK();
const signer = new ArweaveSigner(jwk);
Expand Down Expand Up @@ -310,7 +310,7 @@ describe('Browser environment', () => {
expect(+winc).to.be.greaterThan(0);
});

describe.only('uploadSignedDataItems()', async () => {
describe('uploadSignedDataItems()', async () => {
it('supports sending a signed Buffer to turbo', async () => {
const jwk = await Arweave.crypto.generateJWK();
const signer = new ArweaveSigner(jwk);
Expand Down

0 comments on commit f361dab

Please sign in to comment.