Skip to content

Commit 6c9cce7

Browse files
committed
test: make use of multiple 'it' blocks
1 parent 0bc1574 commit 6c9cce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms-and-data-structures/project-euler/001-multiples-of-3-or-5/multiples-of-3-or-5.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { describe, it } = require('node:test')
33

44
const solutions = require('./multiples-of-3-or-5.repo')
55

6-
for (const {fun, id} of solutions) {
6+
for (const { fun, id } of solutions) {
77
describe(`Project Euler "Multiples of 3 or 5" solution "${id}"`, () => {
88
it('sums multiples of 3 or 5 that are smaller than the input', () => {
99
assert.equal(

0 commit comments

Comments
 (0)