@@ -43,58 +43,47 @@ const assertIgnoredWhitespaces = (expr) => {
4343
4444describe ( 'ExprParser' , ( ) => {
4545 context ( 'expr' , ( ) => {
46- // TODO(Rui): BUG#29795595
47- it . skip ( 'ignores any leading or trailing whitespace in an intervalExpr' , ( ) => {
46+ it ( 'ignores any leading or trailing whitespace in an intervalExpr' , ( ) => {
4847 return assertIgnoredWhitespaces ( 'CURTIME() + INTERVAL 2 HOUR' ) ;
4948 } ) ;
5049
51- // TODO(Rui): BUG#29795595
52- it . skip ( 'ignores any leading or trailing whitespace in a mulDivExpr' , ( ) => {
50+ it ( 'ignores any leading or trailing whitespace in a mulDivExpr' , ( ) => {
5351 return assertIgnoredWhitespaces ( '2 * 4' ) ;
5452 } ) ;
5553
56- // TODO(Rui): BUG#29795595
57- it . skip ( 'ignores any leading or trailing whitespace in a addSubExpr' , ( ) => {
54+ it ( 'ignores any leading or trailing whitespace in a addSubExpr' , ( ) => {
5855 return assertIgnoredWhitespaces ( '1 + 1' ) ;
5956 } ) ;
6057
61- // TODO(Rui): BUG#29795595
62- it . skip ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
58+ it ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
6359 return assertIgnoredWhitespaces ( '2 >> 1' ) ;
6460 } ) ;
6561
66- // TODO(Rui): BUG#29795595
67- it . skip ( 'ignores any leading or trailing whitespace in a bitExpr' , ( ) => {
62+ it ( 'ignores any leading or trailing whitespace in a bitExpr' , ( ) => {
6863 return assertIgnoredWhitespaces ( '1 ^ 1' ) ;
6964 } ) ;
7065
71- // TODO(Rui): BUG#29795595
72- it . skip ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
66+ it ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
7367 return assertIgnoredWhitespaces ( '2 >> 1' ) ;
7468 } ) ;
7569
76- // TODO(Rui): BUG#29795595
77- it . skip ( 'ignores any leading or trailing whitespace in a compExpr' , ( ) => {
70+ it ( 'ignores any leading or trailing whitespace in a compExpr' , ( ) => {
7871 return assertIgnoredWhitespaces ( 'foo = :v' ) ;
7972 } ) ;
8073
81- // TODO(Rui): BUG#29795595
82- it . skip ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
74+ it ( 'ignores any leading or trailing whitespace in a shiftExpr' , ( ) => {
8375 return assertIgnoredWhitespaces ( '2 >> 1' ) ;
8476 } ) ;
8577
86- // TODO(Rui): BUG#29795595
87- it . skip ( 'ignores any leading or trailing whitespace in an ilriExpr' , ( ) => {
78+ it ( 'ignores any leading or trailing whitespace in an ilriExpr' , ( ) => {
8879 return assertIgnoredWhitespaces ( 'TRUE IS NOT FALSE' ) ;
8980 } ) ;
9081
91- // TODO(Rui): BUG#29795595
92- it . skip ( 'ignores any leading or trailing whitespace in an andExpr' , ( ) => {
82+ it ( 'ignores any leading or trailing whitespace in an andExpr' , ( ) => {
9383 return assertIgnoredWhitespaces ( 'foo = "bar" AND baz = "qux"' ) ;
9484 } ) ;
9585
96- // TODO(Rui): BUG#29795595
97- it . skip ( 'ignores any leading or trailing whitespace in an orExpr' , ( ) => {
86+ it ( 'ignores any leading or trailing whitespace in an orExpr' , ( ) => {
9887 return assertIgnoredWhitespaces ( 'foo = "bar" OR baz = "qux"' ) ;
9988 } ) ;
10089
0 commit comments