aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormitermayer <mitermayer.reis@gmail.com>2019-08-30 04:35:38 +0000
committermitermayer <mitermayer.reis@gmail.com>2019-08-30 04:35:38 +0000
commit4fac5416d051ae6867234927bb1cef94b62ff3c9 (patch)
tree3fcd85dcf80daa33d88ae15f2d476914ecc84013 /tests
parent3a48c4e12314b48e267de06afb882c959339a116 (diff)
downloadvim-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
Diffstat (limited to 'tests')
-rw-r--r--tests/formatting.test.js2
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);
});
};