Skip to content

Commit 010729b

Browse files
Removing the persistence Spec test
1 parent ea07c8e commit 010729b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/firestore/test/unit/specs/describe_spec.ts

-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ import { SpecStep } from './spec_test_runner';
2424
// Disables all other tests; useful for debugging. Multiple tests can have
2525
// this tag and they'll all be run (but all others won't).
2626
const EXCLUSIVE_TAG = 'exclusive';
27-
// Persistence-related tests.
28-
const PERSISTENCE_TAG = 'persistence';
2927
// Multi-client related tests (which imply persistence).
3028
const MULTI_CLIENT_TAG = 'multi-client';
3129
// Explicit per-platform disable flags.
@@ -34,7 +32,6 @@ const NO_ANDROID_TAG = 'no-android';
3432
const NO_IOS_TAG = 'no-ios';
3533
const KNOWN_TAGS = [
3634
EXCLUSIVE_TAG,
37-
PERSISTENCE_TAG,
3835
MULTI_CLIENT_TAG,
3936
NO_WEB_TAG,
4037
NO_ANDROID_TAG,

packages/firestore/test/unit/specs/persistence_spec.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { doc, path } from '../../util/helpers';
2121
import { describeSpec, specTest } from './describe_spec';
2222
import { client, spec } from './spec_builder';
2323

24-
describeSpec('Persistence:', ['persistence'], () => {
24+
describeSpec('Persistence:', [], () => {
2525
specTest('Local mutations are persisted and re-sent', [], () => {
2626
return spec()
2727
.userSets('collection/key1', { foo: 'bar' })

0 commit comments

Comments
 (0)