Skip to content

Commit 6b9884e

Browse files
Disable flakey JupyterServerUriProvider test (#13669)
1 parent a5699d4 commit 6b9884e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/test/datascience/jupyterUriProviderRegistration.functional.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ suite(`DataScience JupyterServerUriProvider tests`, () => {
9999
await ioc.dispose();
100100
});
101101

102-
test('Expiration', async () => {
102+
test('Expiration', async function () {
103+
// Issue #13668 filed to investigate / reactivate. Was failing randomly in some PR runs.
104+
// tslint:disable-next-line: no-invalid-this
105+
return this.skip();
106+
103107
// Set the URI to id value.
104108
const uri = `${Identifiers.REMOTE_URI}?${Identifiers.REMOTE_URI_ID_PARAM}=${TestUriProviderId}&${Identifiers.REMOTE_URI_HANDLE_PARAM}=${TestUriHandle}`;
105109
ioc.forceDataScienceSettingsChanged({

0 commit comments

Comments
 (0)