diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2019-08-30 04:35:38 +0000 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2019-08-30 04:35:38 +0000 |
| commit | 4fac5416d051ae6867234927bb1cef94b62ff3c9 (patch) | |
| tree | 3fcd85dcf80daa33d88ae15f2d476914ecc84013 | |
| parent | 3a48c4e12314b48e267de06afb882c959339a116 (diff) | |
| download | vim-prettier-4fac5416d051ae6867234927bb1cef94b62ff3c9.tar.xz | |
enabling-tests-to-auto-run-on-ci - fixing test
- This commit fixes test that was used to force fail to test CI
integration
| -rw-r--r-- | tests/formatting.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/formatting.test.js b/tests/formatting.test.js index 333aba0..d627921 100644 --- a/tests/formatting.test.js +++ b/tests/formatting.test.js @@ -73,7 +73,7 @@ const assertFormatting = (file) => { const updatedLines = await getBufferContents(remote); // we now check that we have indeed formatted the code - expect(lines).toBe(updatedLines); + expect(lines).not.toBe(updatedLines); }); }; |
