Skip to content

Commit 26d1a75

Browse files
committed
unskip some working tests in search_exactPhrase that got merged incorrectly
1 parent 4e65acb commit 26d1a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/search/test_cases/search_exactPhrase.test.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ describe('Wildcard Searches', () => {
9797
});
9898

9999

100-
describe.skip('SearchRequest.processSearchText()', () => {
100+
describe('SearchRequest.processSearchText()', () => {
101101
const testCases: Array<{ input: string; expectedType: string; expectedProcessedText: string; }> = [
102102
{ input: "127.0.0.*", expectedType: 'SEARCH_AS_WILDCARD_ASTERISK', expectedProcessedText: "127.0.0.*" },
103103
{ input: "127.*.0.1", expectedType: 'SEARCH_AS_WILDCARD_ASTERISK', expectedProcessedText: "127.*.0.1" },
@@ -123,7 +123,7 @@ describe('Wildcard Searches', () => {
123123
});
124124

125125

126-
describe.skip('BasicSearchManager.search()', () => {
126+
describe('BasicSearchManager.search()', () => {
127127
const testCases: Array<{ input: string; succeed: boolean, expectedNum: number; }> = [
128128
{ input: "127.0.0.*", succeed: true, expectedNum: 2 },
129129
{ input: "127.*.0.1", succeed: true, expectedNum: 2 },

0 commit comments

Comments
 (0)