Chore: linting

This commit is contained in:
Pieter Vander Vennet 2024-04-13 02:40:21 +02:00
parent 4625ad9a5c
commit 097141f944
307 changed files with 5346 additions and 2147 deletions

View file

@ -91,10 +91,10 @@ describe("ImageProviders", () => {
"https://scontent-bru2-1.xx.fbcdn.net/m1/v/t6/Alorup_ipsumMC602spvM_e_rqOHyiUcYUTetXM7K52DDBEY5J4FWg4WKQqVUlMsWJn4nLXk0pxlBLx31146FqZ2Kg65z7lJUfR6wpW6WPSR5_y7RKdv4YEuzPjwIN0lagBnQONV3UjmXnEGpMouU?stp=s1024x768&ccb=10-5&oh=d460b401c505714ee1cb8bd6baf8ae5d&oe=61731FC3&_nc_sid=122ab1",
id: "196804715753265",
captured_at:1627748022000,
"creator": {
"username": "filipc",
"id": "109372117958792"
captured_at: 1627748022000,
creator: {
username: "filipc",
id: "109372117958792",
},
}
)

View file

@ -1,73 +1,72 @@
import { describe, expect, it } from "vitest"
import LinkedDataLoader from "../../../src/Logic/Web/LinkedDataLoader"
describe("LinkedDataLoader", () => {
it("should compact a shop entry", async () => {
const graph = {
"@context": "http://schema.org",
"@type": "LocalBusiness",
"@id": "http://stores.delhaize.be/nl/ad-delhaize-munsterbilzen",
"name": "AD Delhaize Munsterbilzen",
"url": "http://stores.delhaize.be/nl/ad-delhaize-munsterbilzen",
"logo": "https://stores.delhaize.be/build/images/web/shop/delhaize-be/favicon.ico",
"image": "http://stores.delhaize.be/image/mobilosoft-testing?apiPath=rehab/delhaize-be/images/location/ad%20delhaize%20image%20ge%CC%81ne%CC%81rale%20%281%29%201652787176865&imageSize=h_500",
"email": "",
"telephone": "+3289413520",
"address": {
name: "AD Delhaize Munsterbilzen",
url: "http://stores.delhaize.be/nl/ad-delhaize-munsterbilzen",
logo: "https://stores.delhaize.be/build/images/web/shop/delhaize-be/favicon.ico",
image: "http://stores.delhaize.be/image/mobilosoft-testing?apiPath=rehab/delhaize-be/images/location/ad%20delhaize%20image%20ge%CC%81ne%CC%81rale%20%281%29%201652787176865&imageSize=h_500",
email: "",
telephone: "+3289413520",
address: {
"@type": "PostalAddress",
"streetAddress": "Waterstraat, 18",
"addressLocality": "Bilzen",
"postalCode": "3740",
"addressCountry": "BE",
streetAddress: "Waterstraat, 18",
addressLocality: "Bilzen",
postalCode: "3740",
addressCountry: "BE",
},
"geo": {
geo: {
"@type": "GeoCoordinates",
"latitude": 50.8906898,
"longitude": 5.5260586,
latitude: 50.8906898,
longitude: 5.5260586,
},
"openingHoursSpecification": [
openingHoursSpecification: [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Tuesday",
"opens": "08:00",
"closes": "18:30",
dayOfWeek: "Tuesday",
opens: "08:00",
closes: "18:30",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Wednesday",
"opens": "08:00",
"closes": "18:30",
dayOfWeek: "Wednesday",
opens: "08:00",
closes: "18:30",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Thursday",
"opens": "08:00",
"closes": "18:30",
dayOfWeek: "Thursday",
opens: "08:00",
closes: "18:30",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Friday",
"opens": "08:00",
"closes": "18:30",
dayOfWeek: "Friday",
opens: "08:00",
closes: "18:30",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Saturday",
"opens": "08:00",
"closes": "18:30",
dayOfWeek: "Saturday",
opens: "08:00",
closes: "18:30",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Sunday",
"opens": "08:00",
"closes": "12:00",
dayOfWeek: "Sunday",
opens: "08:00",
closes: "12:00",
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Monday",
"opens": "12:00",
"closes": "18:30",
dayOfWeek: "Monday",
opens: "12:00",
closes: "18:30",
},
],
"@base": "https://stores.delhaize.be/nl/ad-delhaize-munsterbilzen",