patternfly
Version:
This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.
16 lines (11 loc) • 363 B
JavaScript
describe("badges test suite", function () {
beforeEach(function () {
globals.readFixture(globals.fixturePath + 'badges.html');
});
it('should contain a button with a badge span element', function () {
var button = $('button');
var span = $('button span.badge');
expect(button).toExist();
expect(span).toHaveClass('badge');
});
});