import { getBackdropStyle } from './getBackdropStyle';

describe('getBackdropStyle', () => {
    it('should return background image styles', () => {
        const result = getBackdropStyle();

        expect(result.backgroundImage).toStrictEqual(
            expect.stringMatching(/sonybg.jpeg/)
        );
        expect(result.backgroundSize).toBe('2000px 1394px');
    });
});
