aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormitermayer <mitermayer.reis@gmail.com>2019-08-30 04:34:14 +0000
committermitermayer <mitermayer.reis@gmail.com>2019-08-30 04:34:14 +0000
commit3a48c4e12314b48e267de06afb882c959339a116 (patch)
treef3582496806bff608d2eecea94b9a1d1521422aa /tests
parent9530c6d52c9645f21ae08ee177ce67f521dc1728 (diff)
downloadvim-prettier-3a48c4e12314b48e267de06afb882c959339a116.tar.xz
enabling-tests-to-auto-run-on-ci - forcing build to fail to test ci
- This commit forces the build to fail to check CI integration is working as expected
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 d627921..333aba0 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).not.toBe(updatedLines);
+ expect(lines).toBe(updatedLines);
});
};