Skip to content

Commit e93cab7

Browse files
committed
Support Windows path in test
1 parent dea208b commit e93cab7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

test/yamlSchemaService.test.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,13 @@ describe('YAML Schema Service', () => {
106106
const schema = await service.getSchemaForResource('', yamlDock.documents[0]);
107107

108108
expect(requestServiceMock).calledTwice;
109-
expect(requestServiceMock).calledWithExactly('file:///schema.json');
110-
expect(requestServiceMock).calledWithExactly('file:///schema.json#/definitions/schemaArray');
109+
if (process.platform === 'win32') {
110+
expect(requestServiceMock).calledWithExactly('file:///d%3A/schema.json');
111+
expect(requestServiceMock).calledWithExactly('file:///d%3A/schema.json#/definitions/schemaArray');
112+
} else {
113+
expect(requestServiceMock).calledWithExactly('file:///schema.json');
114+
expect(requestServiceMock).calledWithExactly('file:///schema.json#/definitions/schemaArray');
115+
}
111116

112117
expect(schema.schema.type).eqls('array');
113118
});

0 commit comments

Comments
 (0)