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 cb01b6a commit 412dff0Copy full SHA for 412dff0
test/loader.spec.js
@@ -325,12 +325,7 @@ describe('loader', () => {
325
(err, code, map) => {
326
expect(err).not.to.exist;
327
expect(code).to.exist;
328
- if (isSvelte5Plus) {
329
- expect(code).to.contain('width: 50px;');
330
- expect(code).to.contain('height: 50px;');
331
- } else {
332
- expect(code).to.contain('{width:50px;height:50px}');
333
- }
+ expect(code).to.contain('{width:50px;height:50px');
334
expect(map).to.exist;
335
},
336
{
0 commit comments