Skip to content

Commit

Permalink
update spec
Browse files Browse the repository at this point in the history
  • Loading branch information
oxaudo committed Jul 18, 2024
1 parent f9c7663 commit 25be773
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,7 @@ const preselectedArtworkLists = {
const artworkEntity: ArtworkEntity = {
id: "artwork-id",
internalID: "artwork-internal-id",
isInAuction: false,
title: "Artwork Title",
year: "2023",
artistNames: "Banksy",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ describe("ArtworkInfo", () => {
})

const artworkEntity: ArtworkEntity = {
artistNames: "Banksy",
id: "artwork-id",
imageURL: null,
internalID: "artwork-internal-id",
artistNames: "Banksy",
isInAuction: false,
title: "Artwork Title",
year: "2023",
imageURL: null,
}
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,11 @@ describe("CreateNewArtworkListView", () => {
})

const artworkEntity: ArtworkEntity = {
artistNames: "Banksy",
id: "artwork-id",
imageURL: null,
internalID: "artwork-internal-id",
isInAuction: false,
title: "Artwork Title",
year: "2023",
artistNames: "Banksy",
imageURL: null,
}

0 comments on commit 25be773

Please sign in to comment.