mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-02-01 06:08:38 +00:00
9 lines
237 B
JavaScript
9 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);
|
|
}
|
|
}
|
|
});
|