UNPKG

adyenthreeds2-js-utils

Version:

These utilities are helper functions to get 3DS 2.0 integrated on to your webpage.

17 lines (14 loc) 558 B
import collectBrowserInfo from './index'; describe('retrieving browser info from browser should', () => { test('match expected elements', () => { expect(collectBrowserInfo()).toMatchObject({ colorDepth: expect.any(Number), javaEnabled: expect.any(Boolean), language: expect.any(String), screenHeight: expect.any(Number), screenWidth: expect.any(Number), timeZoneOffset: expect.any(Number), userAgent: expect.any(String) }); }); });