* Checks that contents of file found by `seeFile` doesn't equal to text. * @param {string} text * @param {string} [encoding='utf8']
(text, encoding = 'utf8')
| 181 | * @param {string} [encoding='utf8'] |
| 182 | */ |
| 183 | dontSeeFileContentsEqual(text, encoding = 'utf8') { |
| 184 | const content = getFileContents(this.file, encoding) |
| 185 | fileEquals(this.file).negate(text, content) |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Returns file names in current directory. |
no test coverage detected