How to convert this into python test file
Discussions on Python.org
How to convert this into python test file
I am moving a project from Node.js to Python. How do I convert this JavaScript test file using Jest into a clean pytest test file? const sum = require('./sum'); describe('sum module', () => { test('adds 1 + 2 to equal 3', () => { expect(sum(1, 2)).toBe(3); }); });
0 comments
No comments yet.