Skip to content

Commit 78e7ad6

Browse files
committed
Also add test for scroll-snap-align
Fixes microsoft#53
1 parent f6d3007 commit 78e7ad6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

e2e/tests/errors.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -388,12 +388,13 @@ describe('Errors', () => {
388388
assert.strictEqual(errorResponse.body.length, 1);
389389
});
390390

391-
it('should not error for scrollbar properties, #95', async () => {
391+
it('should not error for newer properties(#95, #53)', async () => {
392392
const errorResponse = await getSemanticDiagnosticsForFile(
393393
`let css: any = {};
394394
const ListNoteTitle = css.span\`
395395
scrollbar-width: 10px;
396396
scrollbar-color: red;
397+
scroll-snap-align: initial;
397398
\`;`);
398399
assert.isTrue(errorResponse.success);
399400
assert.strictEqual(errorResponse.body.length, 0);

0 commit comments

Comments
 (0)