Files
streetmerchant/src/store/model/gamestop-ie.ts
T
Jef LeCompte f87053cb02 refactor: use gts instead of xo
feat: add browser opening to test:notification
feat: add c8 and mocha for testing
feat: update Docker and ci
style: update editorconfig
2021-01-17 15:21:53 -05:00

32 lines
661 B
TypeScript

import {Store} from './store';
export const GamestopIE: Store = {
currency: '€',
labels: {
inStock: {
container: '#btnAddToCart',
text: ['add to cart!'],
},
maxPrice: {
container: 'span.pricetext',
},
},
links: [
{
brand: 'microsoft',
model: 'xbox series x',
series: 'xboxsx',
url:
'https://www.gamestop.ie/Xbox%20Series/Games/73034/xbox-series-x-console',
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url:
'https://www.gamestop.ie/PlayStation%205/Games/72504/playstation-5-console',
},
],
name: 'gamestop-ie',
};