This commit is contained in:
Pine Wu
2018-04-12 15:50:05 -07:00
parent d4e1aeb860
commit 7c62e560a2
2 changed files with 0 additions and 17 deletions

View File

@@ -149,17 +149,4 @@ suite('Completions', () => {
]
}, testUri, folders);
});
test('CSS Path Completion - Proper escaping', function () {
let testUri = Uri.file(path.resolve(__dirname, '../../test/pathCompletionFixtures/about/about.css')).toString();
let folders = [{ name: 'x', uri: Uri.file(path.resolve(__dirname, '../../test')).toString() }];
assertCompletions('html { background-image: url(./|)', {
items: [
{ label: `about\\ \\(\\,\\'\\".css`, resultText: `html { background-image: url(./about\\ \\(\\,\\'\\".css)` }
]
}, testUri, folders);
});
});