@theia/api-tests 1.19.0 → 1.21.0-next.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@theia/api-tests",
3
- "version": "1.19.0",
3
+ "version": "1.21.0-next.13+afcf799cca0",
4
4
  "description": "Theia API tests",
5
5
  "dependencies": {
6
- "@theia/core": "1.19.0"
6
+ "@theia/core": "1.21.0-next.13+afcf799cca0"
7
7
  },
8
8
  "license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
9
9
  "repository": {
@@ -20,5 +20,5 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "gitHead": "cebb5417bb40e320178e3a4e66070af514f0525f"
23
+ "gitHead": "afcf799cca07f3cabb4c8da984b774ab361f494c"
24
24
  }
@@ -684,6 +684,7 @@ DIV {
684
684
  });
685
685
 
686
686
  it('run reference code lens', async function () {
687
+ this.timeout(300_000); // 5 min (give time to `tsserver` to initialize and then respond to make this test pass.)
687
688
  // @ts-ignore
688
689
  const globalValue = preferences.inspect('javascript.referencesCodeLens.enabled').globalValue;
689
690
  toTearDown.push({ dispose: () => preferences.set('javascript.referencesCodeLens.enabled', globalValue, PreferenceScope.User) });