DEV: Fix a composer state leak in tests

This is the one that made discourse-encrypt tests (and all subsequent tests) hang.
This commit is contained in:
Jarek Radosz 2020-06-15 01:44:41 +02:00
parent 36a3675e0a
commit 1303e89a72
1 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,9 @@ acceptance("Composer Actions", {
},
beforeEach() {
_clearSnapshots();
},
afterEach() {
_clearSnapshots();
}
});
@ -386,6 +389,9 @@ acceptance("Composer Actions With New Topic Draft", {
},
beforeEach() {
_clearSnapshots();
},
afterEach() {
_clearSnapshots();
}
});