this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 290 B view raw
1var expect = require('chai').expect; 2 3var Day4 = require('../lib/day4'); 4 5describe('Day4', function() { 6 describe('#adventCoinSecret', function() { 7 it('returns the correct answer', function() { 8 expect(Day4.adventCoinSecret('abcdef', '00000')).to.equal(609043); 9 }); 10 }); 11});