(callback)
| 235 | } |
| 236 | } |
| 237 | function runSingleScript(callback) { |
| 238 | PythonShell.run('echo_args.py', { |
| 239 | args: ['hello', 'world'] |
| 240 | }).then((results)=> { |
| 241 | results.should.be.an.Array().and.have.lengthOf(2); |
| 242 | results.should.eql(['hello', 'world']); |
| 243 | callback(); |
| 244 | }); |
| 245 | } |
| 246 | |
| 247 | }); |
| 248 |
no test coverage detected
searching dependent graphs…