We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9079f1d commit 8444b79Copy full SHA for 8444b79
1 file changed
index.test.js
@@ -97,6 +97,11 @@ describe('html', () => {
97
.toBe('<span class="sql-hl-number">42</span>')
98
})
99
100
+ it('decimals', () => {
101
+ expect(hlHtml('42.11'))
102
+ .toBe('<span class="sql-hl-number">42.11</span>')
103
+ })
104
+
105
it('keywords (uppercase)', () => {
106
expect(hlHtml('SELECT'))
107
.toBe('<span class="sql-hl-keyword">SELECT</span>')
0 commit comments