mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 08:47:43 +00:00
f87053cb02
feat: add browser opening to test:notification feat: add c8 and mocha for testing feat: update Docker and ci style: update editorconfig
29 lines
654 B
TypeScript
29 lines
654 B
TypeScript
import {Store} from './store';
|
|
|
|
export const JohnLewis: Store = {
|
|
currency: '£',
|
|
labels: {
|
|
inStock: {
|
|
container: '#button--add-to-basket',
|
|
text: ['Add to your basket'],
|
|
},
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.johnlewis.com/sony-playstation-5-dualsense-wireless-controller-white/p5192093',
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url:
|
|
'https://www.johnlewis.com/sony-playstation-5-console-with-dualsense-controller/white/p5115192',
|
|
},
|
|
],
|
|
name: 'johnlewis',
|
|
};
|