Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
     "dbaeumer.vscode-eslint",
     "eamodio.gitlens",
     "EditorConfig.EditorConfig",
+    "hbenl.vscode-mocha-test-adapter",
     "ms-azuretools.vscode-docker",
     "streetsidesoftware.code-spell-checker"
   ]
 
 {
   "editor.codeActionsOnSave": {
     "source.fixAll": true
-  }
+  },
+  "testExplorer.useNativeTesting": true,
+  "mochaExplorer.files": ["test/**/*Test.ts"]
 }
 
     expect(Utils.isIterable([])).toBe(true);
     expect(Utils.isIterable(new Map())).toBe(true);
     expect(Utils.isIterable(new Set())).toBe(true);
+    expect(Utils.isIterable(new WeakMap())).toBe(false);
+    expect(Utils.isIterable(new WeakSet())).toBe(false);
   });
 
   it('Verify isEmptyString()', () => {