@@ -22,7 +22,7 @@ describe('Search', () => {
22
22
} ) ;
23
23
} ) ;
24
24
25
- it ( 'simple path match' , ( ) => {
25
+ xit ( 'simple path match' , ( ) => {
26
26
rootNote . child ( becca_mocking . note ( 'Europe' ) . child ( becca_mocking . note ( 'Austria' ) ) ) ;
27
27
28
28
const searchContext = new SearchContext ( ) ;
@@ -32,7 +32,7 @@ describe('Search', () => {
32
32
expect ( becca_mocking . findNoteByTitle ( searchResults , 'Austria' ) ) . toBeTruthy ( ) ;
33
33
} ) ;
34
34
35
- it ( 'normal search looks also at attributes' , ( ) => {
35
+ xit ( 'normal search looks also at attributes' , ( ) => {
36
36
const austria = becca_mocking . note ( 'Austria' ) ;
37
37
const vienna = becca_mocking . note ( 'Vienna' ) ;
38
38
@@ -50,7 +50,7 @@ describe('Search', () => {
50
50
expect ( becca_mocking . findNoteByTitle ( searchResults , 'Vienna' ) ) . toBeTruthy ( ) ;
51
51
} ) ;
52
52
53
- it ( 'normal search looks also at type and mime' , ( ) => {
53
+ xit ( 'normal search looks also at type and mime' , ( ) => {
54
54
rootNote
55
55
. child ( becca_mocking . note ( 'Effective Java' , { type : 'book' , mime : '' } ) )
56
56
. child ( becca_mocking . note ( 'Hello World.java' , { type : 'code' , mime : 'text/x-java' } ) ) ;
@@ -71,7 +71,7 @@ describe('Search', () => {
71
71
expect ( searchResults . length ) . toEqual ( 2 ) ;
72
72
} ) ;
73
73
74
- it ( 'only end leafs are results' , ( ) => {
74
+ xit ( 'only end leafs are results' , ( ) => {
75
75
rootNote . child ( becca_mocking . note ( 'Europe' ) . child ( becca_mocking . note ( 'Austria' ) ) ) ;
76
76
77
77
const searchContext = new SearchContext ( ) ;
@@ -81,7 +81,7 @@ describe('Search', () => {
81
81
expect ( becca_mocking . findNoteByTitle ( searchResults , 'Europe' ) ) . toBeTruthy ( ) ;
82
82
} ) ;
83
83
84
- it ( 'only end leafs are results' , ( ) => {
84
+ xit ( 'only end leafs are results' , ( ) => {
85
85
rootNote . child ( becca_mocking . note ( 'Europe' ) . child ( becca_mocking . note ( 'Austria' ) . label ( 'capital' , 'Vienna' ) ) ) ;
86
86
87
87
const searchContext = new SearchContext ( ) ;
@@ -146,7 +146,7 @@ describe('Search', () => {
146
146
expect ( becca_mocking . findNoteByTitle ( searchResults , 'Czech Republic' ) ) . toBeTruthy ( ) ;
147
147
} ) ;
148
148
149
- it ( 'inherited label comparison' , ( ) => {
149
+ xit ( 'inherited label comparison' , ( ) => {
150
150
rootNote . child (
151
151
becca_mocking
152
152
. note ( 'Europe' )
@@ -574,7 +574,7 @@ describe('Search', () => {
574
574
expect ( becca . notes [ searchResults [ 0 ] . noteId ] . title ) . toEqual ( 'Europe' ) ;
575
575
} ) ;
576
576
577
- it ( 'test note.text *=* something' , ( ) => {
577
+ xit ( 'test note.text *=* something' , ( ) => {
578
578
const italy = becca_mocking . note ( 'Italy' ) . label ( 'capital' , 'Rome' ) ;
579
579
const slovakia = becca_mocking . note ( 'Slovakia' ) . label ( 'capital' , 'Bratislava' ) ;
580
580
@@ -587,7 +587,7 @@ describe('Search', () => {
587
587
expect ( becca . notes [ searchResults [ 0 ] . noteId ] . title ) . toEqual ( 'Slovakia' ) ;
588
588
} ) ;
589
589
590
- it ( 'test that fulltext does not match archived notes' , ( ) => {
590
+ xit ( 'test that fulltext does not match archived notes' , ( ) => {
591
591
const italy = becca_mocking . note ( 'Italy' ) . label ( 'capital' , 'Rome' ) ;
592
592
const slovakia = becca_mocking . note ( 'Slovakia' ) . label ( 'capital' , 'Bratislava' ) ;
593
593
0 commit comments