提交 86a081dc 编写于 作者: R Rob Lourens

Tests for #24299

上级 e392265c
......@@ -114,6 +114,26 @@ suite('Search-integration', () => {
doSearchTest(config, 4, done);
});
test('Text: GameOfLife (Word Match, Spaces)', function (done: () => void) {
let config = {
rootFolders: rootfolders(),
filePattern: '*.js',
contentPattern: { pattern: ' GameOfLife ', isWordMatch: true }
};
doSearchTest(config, 1, done);
});
test('Text: GameOfLife (Word Match, Punctuation and Spaces)', function (done: () => void) {
let config = {
rootFolders: rootfolders(),
filePattern: '*.js',
contentPattern: { pattern: ', as =', isWordMatch: true }
};
doSearchTest(config, 1, done);
});
test('Text: Helvetica (UTF 16)', function (done: () => void) {
let config = {
rootFolders: rootfolders(),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册