* Checks that file found by `seeFile` doesn't include text. * @param {string} text * @param {string} [encoding='utf8']
(text, encoding = 'utf8')
| 147 | * @param {string} [encoding='utf8'] |
| 148 | */ |
| 149 | dontSeeInThisFile(text, encoding = 'utf8') { |
| 150 | const content = getFileContents(this.file, encoding) |
| 151 | fileIncludes(this.file).negate(text, content) |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Checks that contents of file found by `seeFile` equal to text. |
no test coverage detected