Skip to content

Commit 4862c9b

Browse files
committed
FAQ about parameterized testing
Fixes #170
1 parent f3ef4f9 commit 4862c9b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

_faq/testing/parameterized.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
question: Does Jasmine support parameterized testing?
3+
---
4+
5+
Not directly. But test suites are just JavaScript, so you can do it anyway.
6+
7+
```javascript
8+
function add(a, b) {
9+
return a + b;
10+
}
11+
12+
describe('add', function() {
13+
const cases = [
14+
{first: 3, second: 3, sum: 6},
15+
{first: 10, second: 4, sum: 14},
16+
{first: 7, second: 1, sum: 8}
17+
];
18+
19+
for (const {first, second, sum} of cases) {
20+
it(`returns ${sum} for ${first} and ${second}`, function () {
21+
expect(add(first, second)).toEqual(sum);
22+
});
23+
}
24+
});
25+
```

0 commit comments

Comments
 (0)