Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
- Adjust changeset
- Add z-index assertions to tests
  • Loading branch information
augustjk committed Apr 5, 2023
1 parent 1a60f44 commit e33a2b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .changeset/slimy-clouds-roll.md
@@ -1,7 +1,6 @@
---
'lit-html': patch
'lit': patch
'lit-element': patch
---

Allow numbers to be used as values in styleMap()
1 change: 1 addition & 0 deletions packages/lit-html/src/test/directives/style-map_test.ts
Expand Up @@ -89,6 +89,7 @@ suite('styleMap', () => {
assert.equal(el.style.marginTop, '2px');
assert.equal(el.style.paddingBottom, '4px');
assert.equal(el.style.opacity, '0.5');
assert.equal(el.style.zIndex, '10');
renderStyleMap({
marginTop: '4px',
paddingBottom: '8px',
Expand Down
4 changes: 2 additions & 2 deletions packages/tests/src/web-test-runner.config.ts
Expand Up @@ -24,8 +24,8 @@ const browserPresets = {
// Default set of Playwright browsers to test when running locally.
local: [
'chromium', // keep browsers on separate lines
// 'firefox', // to make it easier to comment out
// 'webkit', // individual browsers
'firefox', // to make it easier to comment out
'webkit', // individual browsers
],

// Browsers to test during automated continuous integration.
Expand Down

0 comments on commit e33a2b2

Please sign in to comment.