(...args)
| 341 | }); |
| 342 | |
| 343 | const testArgs = (...args) => expect(this.queryInterface.addColumn(...args)) |
| 344 | .to.be.rejectedWith(Error, class="st">'addColumn takes at least 3 arguments (table, attribute name, attribute definition)'); |
| 345 | |
| 346 | await testArgs(class="st">'users', class="st">'level_id'); |
| 347 | await testArgs(null, class="st">'level_id'); |
no test coverage detected