This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Debug Wave App", | |
| "type": "python", | |
| "request": "launch", | |
| "program": "${workspaceFolder}/py/venv/bin/wave", | |
| "python": "${workspaceFolder}/py/venv/bin/python", | |
| "args": [ | |
| "run", | |
| "examples.${fileBasename}" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe('Person', () => { | |
| describe('#setName', () => { | |
| it('should set name when name is passed', () => { | |
| const person = new Person(); | |
| const name = 'Alex'; | |
| person.setName(name); | |
| expect(person.name).toBe(name); | |
| }); |