Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoci committed Sep 28, 2023
1 parent d9d0c61 commit 69fe376
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions examples/game-of-life/game-of-life.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,11 @@ export const createGameOfLife = (width: number, height: number): GameOfLife => {
(acc, [rowIndex, colIndex]) =>
getCell(rowIndex, colIndex).fold(
() => acc,
(it) => {
console.log('@@@', it)
return it.fold(
(it) =>
it.fold(
() => acc,
() => acc + 1
)
}
),
0
)
Expand Down
1 change: 0 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ export default {
testEnvironment: 'node',
testMatch: ['**/?(*.)+(spec|test).[tj]s?(x)'],
testPathIgnorePatterns: ['/node_modules/', '/.github/', '/.idea/', '/docs/', '/dist/'],
testURL: 'http://localhost',
}

0 comments on commit 69fe376

Please sign in to comment.