Skip to content

Commit

Permalink
test(Breadcrumb): add missing section keys
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Sep 2, 2017
1 parent a1f1f96 commit de9536e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/specs/collections/Breadcrumb/Breadcrumb-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BreadcrumbDivider from 'src/collections/Breadcrumb/BreadcrumbDivider'
import BreadcrumbSection from 'src/collections/Breadcrumb/BreadcrumbSection'
import * as common from 'test/specs/commonTests'

describe('Breadcrumb', () => {
describe.only('Breadcrumb', () => {
common.isConformant(Breadcrumb)
common.hasSubComponents(Breadcrumb, [BreadcrumbDivider, BreadcrumbSection])
common.hasUIClassName(Breadcrumb)
Expand All @@ -17,8 +17,8 @@ describe('Breadcrumb', () => {
})

const sections = [
{ content: 'Home', link: true },
{ content: 'T-Shirt', href: 'google.com' },
{ key: 'home', content: 'Home', link: true },
{ key: 't-shirt', content: 'T-Shirt', href: 'google.com' },
]

it('renders children with `sections` prop', () => {
Expand Down

0 comments on commit de9536e

Please sign in to comment.