Skip to content

Commit

Permalink
debug closure
Browse files Browse the repository at this point in the history
  • Loading branch information
dplewis committed Jul 7, 2024
1 parent 1088415 commit 0981f11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,9 @@ beforeEach(() => {
afterEach(function (done) {
const afterLogOut = async () => {
if (Object.keys(openConnections).length > 0) {
console.warn('There were open connections to the server left after the test finished');
console.warn(`There were ${Object.keys(openConnections).length} open connections to the server left after the test finished`);
}
destroyAliveConnections();
// destroyAliveConnections();
await TestUtils.destroyAllDataPermanently(true);
SchemaCache.clear();
if (didChangeConfiguration) {
Expand Down
3 changes: 1 addition & 2 deletions spec/support/jasmine.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"spec_dir": "spec",
"spec_files": ["*spec.js"],
"helpers": ["helper.js"],
"random": true
"helpers": ["helper.js"]
}

0 comments on commit 0981f11

Please sign in to comment.