We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d3007 commit 78e7ad6Copy full SHA for 78e7ad6
e2e/tests/errors.js
@@ -388,12 +388,13 @@ describe('Errors', () => {
388
assert.strictEqual(errorResponse.body.length, 1);
389
});
390
391
- it('should not error for scrollbar properties, #95', async () => {
+ it('should not error for newer properties(#95, #53)', async () => {
392
const errorResponse = await getSemanticDiagnosticsForFile(
393
`let css: any = {};
394
const ListNoteTitle = css.span\`
395
scrollbar-width: 10px;
396
scrollbar-color: red;
397
+ scroll-snap-align: initial;
398
\`;`);
399
assert.isTrue(errorResponse.success);
400
assert.strictEqual(errorResponse.body.length, 0);
0 commit comments