Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
hubsmoke committed Mar 15, 2024
1 parent af2fbc7 commit a6c43ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/basics.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ describe("dPID resolution", function () {
});

// skipping due to bad migration on sepolia-dev
it.skip("should handle an unversioned raw dpid", async () => {
it("should handle an unversioned raw dpid", async () => {
await request(app)
.get("/46?raw")
.expect(302)
.then((res) => {
const value = res.header["location"];

const expected =
"https://ipfs.desci.com/ipfs/bafkreiepot62powegf7tt73gyiz24facsdloywggattt2asz5y4eaqhkyi";
"https://ipfs.desci.com/ipfs/bafkreihge5qw7sc3mqc4wkf4cgpv6udtvrgipfxwyph7dhlyu6bkkt7tfq";
assert.equal(value, expected, "incorrect resolution");
});
});
Expand Down

0 comments on commit a6c43ee

Please sign in to comment.