From 72a69853e75f753ab2686a6e7529e468f462f99a Mon Sep 17 00:00:00 2001 From: patak Date: Thu, 13 Jul 2023 13:42:51 +0200 Subject: [PATCH] test: ignore order of HMR updates in tailwind spec (#13821) --- playground/tailwind/__test__/tailwind.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playground/tailwind/__test__/tailwind.spec.ts b/playground/tailwind/__test__/tailwind.spec.ts index 94bc8a7d4e8cd6..e639678331e9e5 100644 --- a/playground/tailwind/__test__/tailwind.spec.ts +++ b/playground/tailwind/__test__/tailwind.spec.ts @@ -59,7 +59,7 @@ if (!isBuild) { '[vite] css hot updated: /index.css', '[vite] hot updated: /src/App.vue', ], - true, + false, ) await untilUpdated(() => getColor(el), 'rgb(11, 22, 33)') }) @@ -77,6 +77,7 @@ if (!isBuild) { '[vite] css hot updated: /index.css', '[vite] hot updated: /src/components/PugTemplate.vue?vue&type=template&lang.js', ], + false, ) await untilUpdated(() => getBgColor(el), 'rgb(220, 38, 38)') })