aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/formatting.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/formatting.test.js b/tests/formatting.test.js
index d627921..d9a271b 100644
--- a/tests/formatting.test.js
+++ b/tests/formatting.test.js
@@ -52,7 +52,7 @@ const assertFormatting = (file) => {
// we now check that we have indeed formatted the code
expect(updatedLines).not.toBe(lines);
- });
+ }, 10000);
test(`Prettier formats ${filename} file with :PrettierAsync command`, async () => {
await remote.edit(`${FIXTURES_DIR}/${file}`);
@@ -74,7 +74,7 @@ const assertFormatting = (file) => {
// we now check that we have indeed formatted the code
expect(lines).not.toBe(updatedLines);
- });
+ }, 10000);
};
beforeAll(async () => {