From: Eduardo San Martin Morote Date: Sat, 15 May 2021 20:01:43 +0000 (+0200) Subject: test: safer test X-Git-Tag: v2.0.0-alpha.17~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af45606a04c20098ea7316917a83e318b40153e8;p=thirdparty%2Fvuejs%2Fpinia.git test: safer test --- diff --git a/__tests__/store.spec.ts b/__tests__/store.spec.ts index 35d0068d..da089cc0 100644 --- a/__tests__/store.spec.ts +++ b/__tests__/store.spec.ts @@ -237,6 +237,6 @@ describe('Store', () => { ) expect(s1).toBeDefined() - expect(s1).toBe(s2) + expect(s1 === s2).toBe(true) }) })