mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +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
32 lines
661 B
TypeScript
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',
|
|
};
|