Fixes seezntv.com

This commit is contained in:
Aleksandr Statciuk
2022-06-17 16:24:52 +03:00
parent 06776a928d
commit 467b710506
2 changed files with 6 additions and 0 deletions

View File

@@ -16,6 +16,9 @@ module.exports = {
request: { request: {
headers: { headers: {
'X-DEVICE-TYPE': 'PCWEB', 'X-DEVICE-TYPE': 'PCWEB',
'X-DEVICE-MODEL': 'Chrome',
'X-OS-TYPE': 'Windows',
'X-OS-VERSION': '11',
transactionId: '0' transactionId: '0'
} }
}, },

View File

@@ -23,6 +23,9 @@ it('can generate valid url', () => {
it('can generate valid request headers', () => { it('can generate valid request headers', () => {
expect(request.headers).toMatchObject({ expect(request.headers).toMatchObject({
'X-DEVICE-TYPE': 'PCWEB', 'X-DEVICE-TYPE': 'PCWEB',
'X-DEVICE-MODEL': 'Chrome',
'X-OS-TYPE': 'Windows',
'X-OS-VERSION': '11',
transactionId: '0' transactionId: '0'
}) })
}) })