9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { __test__ } from './product.js';
|
|
describe('amazon product normalization', () => {
|
|
it('normalizes product facts from the product page', () => {
|
|
const result = __test__.normalizeProductPayload({
|
|
href: 'https://www.amazon.com/dp/B0FJS72893',
|
|
title: 'Amazon.com: KVTUKIAIT Desktop Shelf Organizer',
|
|
product_title: 'White Desktop Shelf Organizer for Top of Desk',
|
|
byline: 'Visit the KVTUKIAIT Store',
|
|
price_text: '$15.99',
|
|
rating_text: '3.9 out of 5 stars',
|
|
review_count_text: '27 ratings',
|
|
review_url: 'https://www.amazon.com/dp/B0FJS72893#customerReviews',
|
|
qa_url: null,
|
|
bullets: ['SPACE-SAVING DESK SHELF ORGANIZER', 'SMALL AND STYLISH AESTHETIC DECOR'],
|
|
breadcrumbs: ['Office Products', 'Desktop & Off-Surface Shelves'],
|
|
});
|
|
expect(result.asin).toBe('B0FJS72893');
|
|
expect(result.price_value).toBe(15.99);
|
|
expect(result.rating_value).toBe(3.9);
|
|
expect(result.review_count).toBe(27);
|
|
expect(result.breadcrumbs).toEqual(['Office Products', 'Desktop & Off-Surface Shelves']);
|
|
});
|
|
});
|