Sha256: cebd6eecc78530b0d42afbad31ab747fba48fc34eb6baf077f4dc36a74b041ba

Contents?: true

Size: 1.61 KB

Versions: 921

Compression:

Stored size: 1.61 KB

Contents

import { ensureAccessible, renderKit } from '../utilities/test-utils'

import Background from './_background'

const props = {
  data: { testid: 'background' },
  backgroundColor: null,
}

it('Should be accessible', async () => {
  ensureAccessible(Background, props)
})

test('backgroundColor = success', () => {
  const kit = renderKit(Background, props, { backgroundColor: 'success' })
  expect(kit).toHaveClass('pb_background_kit pb_background_color_success')
})

test('backgroundColor = category_1', () => {
  const kit = renderKit(Background, props, { backgroundColor: 'category_1' })
  expect(kit).toHaveClass('pb_background_kit pb_background_color_category_1')
})

test('customColor prop styles background color with a hex value', () => {
  const kit = renderKit(Background, props, { customColor: '#1d99a8' })

  expect(kit).toHaveClass('pb_background_kit pb_background_custom_color')
  expect(kit).toHaveStyle(`background-color: #1d99a8;`)
})

test('backgroundRepeat = repeat', () => {
  const kit = renderKit(Background, props, { classname: "background-image", imageUrl: "https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80", backgroundRepeat: 'repeat' })
  expect(kit).toHaveStyle('background-repeat: repeat')
})

test('backgroundSize = auto', () => {
  const kit = renderKit(Background, props, { classname: "background-image", imageUrl: "https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80", backgroundSize: 'auto' })
  expect(kit).toHaveStyle('background-size: auto')
})

Version data entries

921 entries across 921 versions & 1 rubygems

Version Path
playbook_ui-11.1.1.pre.alpha1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.1.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.0.1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.0.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.0.0.pre.alpha.2 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.0.0.pre.alpha.1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.27.0.pre.lazysizes1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.27.0.pre.datepicker1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.alpha5 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.rc1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.alpha.sticky1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.alpha.display1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.alpha3 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.25.1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.26.0.pre.alpha1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.25.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.25.0.pre.alpha3 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-10.25.0.pre.treeshaking1 app/pb_kits/playbook/pb_background/background.test.js