(...args)
| 353 | }); |
| 354 | |
| 355 | const testArgs = (...args) => expect(this.queryInterface.addColumn(...args)) |
| 356 | .to.be.rejectedWith(Error, 'addColumn takes at least 3 arguments (table, attribute name, attribute definition)'); |
| 357 | |
| 358 | await testArgs('users', 'level_id'); |
| 359 | await testArgs(null, 'level_id'); |
no test coverage detected