mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-01-31 22:08:00 +00:00
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
|
/** @license https://github.com/facebook/jest/blob/master/LICENSE */
|
||
|
|
||
|
test("adding positive numbers is not zero", () => {
|
||
|
for (let a = 1; a < 10; a++) {
|
||
|
for (let b = 1; b < 10; b++) {
|
||
|
expect(a + b).not.toBe(0);
|
||
|
}
|
||
|
}
|
||
|
});
|