Skip to content

Commit

Permalink
window.navigator.platform
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdaniels committed May 27, 2023
1 parent 22f544f commit aae706a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ describe('AngularFirestoreCollectionGroup', () => {

it('should be able to filter snapshotChanges() types - removed', done => {
(async () => {
if (process.platform === 'win32') {
if (window.navigator.platform === 'Win32') {
pending('Flakes on Windows');
}

Expand Down Expand Up @@ -497,7 +497,7 @@ describe('AngularFirestoreCollectionGroup', () => {

it('should be able to filter stateChanges() types - removed', done => {
(async () => {
if (process.platform === 'win32') {
if (window.navigator.platform === 'Win32') {
pending('Flakes on Windows');
}

Expand Down Expand Up @@ -540,7 +540,7 @@ describe('AngularFirestoreCollectionGroup', () => {

it('should be able to filter auditTrail() types - removed', done => {
(async () => {
if (process.platform === 'win32') {
if (window.navigator.platform === 'Win32') {
pending('Flakes on Windows');
}

Expand Down
4 changes: 2 additions & 2 deletions src/compat/firestore/collection/collection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ describe('AngularFirestoreCollection', () => {

it('should be able to filter snapshotChanges() types - removed', done => {
(async () => {
if (process.platform === 'win32') {
if (window.navigator.platform === 'Win32') {
pending('Flakes on Windows');
}

Expand Down Expand Up @@ -449,7 +449,7 @@ describe('AngularFirestoreCollection', () => {

it('should be able to filter stateChanges() types - added', done => {
(async () => {
if (process.platform === 'win32') {
if (window.navigator.platform === 'Win32') {
pending('Flakes on Windows');
}

Expand Down

0 comments on commit aae706a

Please sign in to comment.