Skip to content

Commit

Permalink
Merge pull request #291 from notmessenger/SkipTests
Browse files Browse the repository at this point in the history
Support skipping of tests
  • Loading branch information
notmessenger committed Mar 4, 2015
2 parents 10e32d8 + d295880 commit a360de0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions tests/unit/components/sl-button-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,17 @@ test( 'Button supports disabled state', function( assert ) {
* While it appears that core Ember functionality is being tested this test is ensuring
* that the implied contract about which DOM element is rendered is adhered to.
*/
/*
test( 'Renders as a button tag', function( assert ) {
QUnit.skip( 'Renders as a button tag', function( assert ) {
});

test( 'Expected default classes are applied', function( assert ) {
QUnit.skip( 'Expected default classes are applied', function( assert ) {
});

test( 'Labels are correctly initialized', function( assert ) {
QUnit.skip( 'Labels are correctly initialized', function( assert ) {
});

test( 'sizeClass() returns correct values', function( assert ) {
QUnit.skip( 'sizeClass() returns correct values', function( assert ) {
});

test( 'themeClass() returns correct value', function( assert ) {
QUnit.skip( 'themeClass() returns correct value', function( assert ) {
});
*/
2 changes: 1 addition & 1 deletion tests/unit/components/sl-dialog-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test( '"title" is rendered as span with "modal-title" class if populated', funct
assert.equal( $.trim( $('.modal-title').text() ), testTitle );
});

test( 'There are more tests to write', function( assert ) {
QUnit.skip( 'There are more tests to write', function( assert ) {
assert.expect(0);

// remaining tests to write:
Expand Down

0 comments on commit a360de0

Please sign in to comment.