Create tests to Listing Component

This commit is contained in:
enzoggqs
2023-01-16 11:23:30 -03:00
parent 2c78a203b0
commit 98a5959369
5 changed files with 142 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
import { useEtherStore } from "@/store/ether";
import { storeToRefs } from "pinia";
import blockchain from "../utils/blockchain";
import ListingComponent from "@/components/ListingComponent.vue";
import ListingComponent from "@/components/ListingComponent/ListingComponent.vue";
import type { BigNumber } from "ethers";
import { ref, watch } from "vue";

View File

@@ -2,7 +2,7 @@
import { useEtherStore } from "@/store/ether";
import { storeToRefs } from "pinia";
import { ref, watch } from "vue";
import ListingComponent from "@/components/ListingComponent.vue";
import ListingComponent from "@/components/ListingComponent/ListingComponent.vue";
import blockchain from "../utils/blockchain";
const etherStore = useEtherStore();