Skip to content

Commit

Permalink
Merge pull request exercism#124 from rchavarria/grains-ignore-all-tes…
Browse files Browse the repository at this point in the history
…ts-but-first

Ignore all tests but first
  • Loading branch information
kytrinyx committed Oct 25, 2015
2 parents 5b6ff73 + 40b3813 commit b6e17fb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions grains/grains.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,31 +37,31 @@ describe('Grains', function () {
expect(grains.square(1)).toBe('1');
});

it('square 2', function () {
xit('square 2', function () {
expect(grains.square(2)).toBe('2');
});

it('square 3', function () {
xit('square 3', function () {
expect(grains.square(3)).toBe('4');
});

it('square 4', function () {
xit('square 4', function () {
expect(grains.square(4)).toBe('8');
});

it('square 16', function () {
xit('square 16', function () {
expect(grains.square(16)).toBe('32768');
});

it('square 32', function () {
xit('square 32', function () {
expect(grains.square(32)).toBe('2147483648');
});

it('square 64', function () {
xit('square 64', function () {
expect(grains.square(64)).toBe('9223372036854775808');
});

it('total', function () {
xit('total', function () {
expect(grains.total()).toBe('18446744073709551615');
});
});

0 comments on commit b6e17fb

Please sign in to comment.