Skip to content

Commit

Permalink
Improve tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Aug 22, 2024
1 parent ac4516e commit 40eaaf9
Showing 1 changed file with 63 additions and 43 deletions.
106 changes: 63 additions & 43 deletions apps/server/src/worker/jobs/scrapeSMWS.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,61 +11,81 @@ test("bottle list", async ({ axiosMock }) => {

const items: any[] = [];

const fn = scrapeBottles(url, async (item) => {
const fn = scrapeBottles(url, async (...item) => {
items.push(item);
});

await fn;

expect(items.length).toBe(128);
expect(items[0]).toMatchInlineSnapshot(`
{
"bottler": {
"name": "The Scotch Malt Whisky Society",
[
{
"bottler": {
"name": "The Scotch Malt Whisky Society",
},
"brand": {
"name": "The Scotch Malt Whisky Society",
},
"caskFill": null,
"caskSize": null,
"caskType": null,
"category": "rye",
"distillers": [
{
"name": "New York Distilling Co.",
},
],
"flavorProfile": null,
"name": "RW3.6 Truly a flavour bomb",
"releaseYear": 2023,
"singleCask": true,
"statedAge": 5,
"vintageYear": null,
},
"brand": {
"name": "The Scotch Malt Whisky Society",
{
"currency": "gbp",
"name": "SMWS RW3.6 Truly a flavour bomb",
"price": 6500,
"url": "https://smws.com/truly-a-flavour-bomb/",
"volume": 750,
},
"caskFill": null,
"caskSize": null,
"caskType": null,
"category": "rye",
"distillers": [
{
"name": "New York Distilling Co.",
},
],
"flavorProfile": null,
"name": "RW3.6 Truly a flavour bomb",
"releaseYear": 2023,
"singleCask": true,
"statedAge": 5,
"vintageYear": null,
}
"https://cdn11.bigcommerce.com/s-vagfena5nz/products/4399/images/6955/RW3.6-web__05977.1696343897.386.513.png?c=1",
]
`);
expect(items[1]).toMatchInlineSnapshot(`
{
"bottler": {
"name": "The Scotch Malt Whisky Society",
[
{
"bottler": {
"name": "The Scotch Malt Whisky Society",
},
"brand": {
"name": "The Scotch Malt Whisky Society",
},
"caskFill": "2nd_fill",
"caskSize": "hogshead",
"caskType": "bourbon",
"category": "single_malt",
"distillers": [
{
"name": "Bowmore",
},
],
"flavorProfile": "lightly_peated",
"name": "3.350 Gladrags of yesteryear",
"releaseYear": 2023,
"singleCask": true,
"statedAge": 19,
"vintageYear": null,
},
"brand": {
"name": "The Scotch Malt Whisky Society",
{
"currency": "gbp",
"name": "SMWS 3.350 Gladrags of yesteryear",
"price": 17950,
"url": "https://smws.com/gladrags-of-yesteryear/",
"volume": 750,
},
"caskFill": "2nd_fill",
"caskSize": "hogshead",
"caskType": "bourbon",
"category": "single_malt",
"distillers": [
{
"name": "Bowmore",
},
],
"flavorProfile": "lightly_peated",
"name": "3.350 Gladrags of yesteryear",
"releaseYear": 2023,
"singleCask": true,
"statedAge": 19,
"vintageYear": null,
}
"https://cdn11.bigcommerce.com/s-vagfena5nz/products/4702/images/7487/3.350-GX-web__19122.1704362139.386.513.png?c=1",
]
`);
});

0 comments on commit 40eaaf9

Please sign in to comment.