TypeScript 61.9%
HTML 37.2%
SQL 0.7%
1import { describe, expect, it } from 'vitest';2import { hintFromLabel, isBundleTitle, slugFromTitle, watchBrand, watchReference } from './categories.js';34describe('auction category mapping', () => {5 it('watch departments', () => {6 expect(slugFromTitle('ROLEX. A STAINLESS STEEL WRISTWATCH REF. 16610 SUBMARINER', 'watches')).toBe('rolex');7 expect(slugFromTitle('Patek Philippe Nautilus 5711/1A-010', 'watches')).toBe('patek_philippe');8 expect(slugFromTitle('Audemars Piguet Royal Oak 15202ST', 'watches')).toBe('audemars_piguet');9 expect(slugFromTitle('Omega Speedmaster Professional 145.022', 'watches')).toBe('omega');10 expect(slugFromTitle('Hermès Birkin 35 Togo', 'watches')).toBe('luxury_handbags');11 expect(slugFromTitle('A diamond and platinum ring, 2.01 carats', 'watches')).toBe('jewelry');12 expect(slugFromTitle('Montblanc Meisterstück fountain pen 149', 'watches')).toBe('pens');13 expect(watchBrand('CARTIER TANK LOUIS').brand).toBe('Cartier');14 expect(watchReference('Ref. 5711/1A-010')).toBe('5711/1A-010');15 });16 it('labels → hints', () => {17 expect(hintFromLabel('Wines & Spirits')).toBe('wine');18 expect(hintFromLabel('Coins, Medals and Banknotes')).toBe('coins');19 expect(hintFromLabel('Designer Handbags & Fashion')).toBe('handbags');20 expect(hintFromLabel('Popular Culture')).toBe('popular_culture');21 expect(hintFromLabel('Science and Natural History')).toBe('natural_history');22 expect(hintFromLabel('Sneakers, Streetwear & Modern Collectables')).toBe('fashion');23 expect(hintFromLabel('Random Department')).toBe('unknown');24 });25 it('keyword sweeps and honesty', () => {26 expect(slugFromTitle('LEGO 10179 Millennium Falcon UCS sealed', 'toys')).toBe('lego_sets');27 expect(slugFromTitle('Funko Pop! Marvel #01', 'toys')).toBe('funko');28 expect(slugFromTitle('Nike Air Jordan 1 Chicago 1985', 'fashion')).toBe('sneakers');29 expect(slugFromTitle('1999 Pokémon Base Set Charizard PSA 10', 'popular_culture')).toBe('pokemon');30 expect(slugFromTitle('Amazing Spider-Man #300 CGC 9.8', 'popular_culture')).toBe('marvel_comics');31 expect(slugFromTitle('Apollo 11 flown mission patch', 'popular_culture')).toBe('space');32 expect(slugFromTitle('Untitled abstract composition', 'unknown')).toBeNull();33 expect(isBundleTitle('A collection of 45 coins')).toBe(true);34 expect(isBundleTitle('1 sovereign 1912')).toBe(false);35 });36});37