Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Jun 2, 2014
2 parents 4f9d135 + df7a137 commit d8cbe56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions spec/functional.spec.js
Expand Up @@ -33,7 +33,7 @@ chai.use(sinonChai);

describe('Functional Programming', function() {

describe('uppercase', function() {
describe.skip('uppercase', function() {

it('returns an upper-case version of the string provided', function() {
// pure function, no side effects
Expand All @@ -43,7 +43,7 @@ describe('Functional Programming', function() {

describe('Higher-order functions', function() {

describe('repeat', function() {
describe.skip('repeat', function() {

/*
Iteration (looping) in functional languages is usually accomplished via recursion.
Expand Down
6 changes: 3 additions & 3 deletions spec/postcode.spec.js
Expand Up @@ -4,7 +4,7 @@ var expect = require('chai').expect,

Postcode = require('../src/postcode');

describe('Postcode', function() {
describe.skip('Postcode', function() {

it('is instantiated with a string representing a post code', function() {
// prepare
Expand All @@ -20,8 +20,8 @@ describe('Postcode', function() {

describe('a valid post code', function() {

xit('...', function() {
it('...', function() {
});
});

});
});

0 comments on commit d8cbe56

Please sign in to comment.