Skip to content

Commit

Permalink
test(planetmint): skip planetmint tests (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino authored Jan 26, 2024
1 parent f7490c0 commit edfa59e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/planetmint/tests/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test.before(async (t) => {
t.context.app = supertest(app);
});

test.serial("Store the signed tx of an asset", async (t) => {
test.skip("Store the signed tx of an asset", async (t) => {
const { app } = t.context;
const asset = {timestamp: new Date().getTime(), city: "Berlin", temperature: "22"};
const res = await app.post("/planetmint_store_asset")
Expand All @@ -32,7 +32,7 @@ test.serial("Store the signed tx of an asset", async (t) => {
t.is(res.body.hash, resRetrieve.body.hash);
});

test.serial("Store the signed tx of an asset with metadata", async (t) => {
test.skip("Store the signed tx of an asset with metadata", async (t) => {
const { app } = t.context;
const metadata = {timestamp: new Date().getTime().toString()};
const res = await app.post("/planetmint_store_asset_metadata")
Expand All @@ -53,13 +53,13 @@ test.skip("Retrieve a zenroom object", async (t) => {
t.is(res.body.hash, hash);
});

test.serial("Retrieve object that doesn't exist", async (t) => {
test.skip("Retrieve object that doesn't exist", async (t) => {
const { app } = t.context;
const res = await app.post("/planetmint_retrieve_no_exist");
t.is(res.status, 500, res.text);
});

test.serial("Create asset, transfer it and then trasnfer it back", async (t) => {
test.skip("Create asset, transfer it and then trasnfer it back", async (t) => {
const bob = {
private_key: "J9tV35oDozNe9S7esxi4p4zkkefmrPp2ez63PjKwqfRz",
public_key: "2umg6yiPZV5QqnaLBy1cwszFiAUSNTVAaXjekwqXL8NW"
Expand Down Expand Up @@ -91,7 +91,7 @@ test.serial("Create asset, transfer it and then trasnfer it back", async (t) =>
t.is(resTransfer2.status, 200, resTransfer2.text);
});

test.serial("Create a token and transfer it", async (t) => {
test.skip("Create a token and transfer it", async (t) => {
const bob = {
private_key: "J9tV35oDozNe9S7esxi4p4zkkefmrPp2ez63PjKwqfRz",
public_key: "2umg6yiPZV5QqnaLBy1cwszFiAUSNTVAaXjekwqXL8NW"
Expand Down

0 comments on commit edfa59e

Please sign in to comment.