summaryrefslogtreecommitdiff
path: root/packages/astro
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro')
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/astro/test/0-css.test.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 4fab76b9c..7052fa0c3 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -86,7 +86,7 @@
"test:e2e:match": "playwright test -g"
},
"dependencies": {
- "@astrojs/compiler": "^0.23.3",
+ "@astrojs/compiler": "^0.23.4",
"@astrojs/language-server": "^0.20.0",
"@astrojs/markdown-remark": "^1.0.0",
"@astrojs/telemetry": "^1.0.0",
diff --git a/packages/astro/test/0-css.test.js b/packages/astro/test/0-css.test.js
index 9f8d901ce..81f3354af 100644
--- a/packages/astro/test/0-css.test.js
+++ b/packages/astro/test/0-css.test.js
@@ -46,7 +46,7 @@ describe('CSS', function () {
expect(el2.attr('class')).to.equal(`visible ${scopedClass}`);
// 2. check CSS
- const expected = `.blue:where(.${scopedClass}){color:#b0e0e6}.color\\\\:blue:where(.${scopedClass}){color:#b0e0e6}.visible:where(.${scopedClass}){display:block}`;
+ const expected = `.blue:where(.${scopedClass}){color:#b0e0e6}.color\\:blue:where(.${scopedClass}){color:#b0e0e6}.visible:where(.${scopedClass}){display:block}`;
expect(bundledCSS).to.include(expected);
});