@@ -43,7 +43,7 @@ import { DEFAULT_SETTINGS } from '../util/settings';
43
43
// eslint-disable-next-line @typescript-eslint/no-explicit-any
44
44
type AnyTestData = any ;
45
45
46
- apiDescribe ( 'Nested Fields' , ( persistence : boolean ) => {
46
+ apiDescribe ( 'Nested Fields' , persistence => {
47
47
const testData = ( n ?: number ) : AnyTestData => {
48
48
n = n || 1 ;
49
49
return {
@@ -240,7 +240,7 @@ apiDescribe('Nested Fields', (persistence: boolean) => {
240
240
// NOTE(mikelehen): I originally combined these tests with the above ones, but
241
241
// Datastore currently prohibits having nested fields and fields with dots in
242
242
// the same entity, so I'm separating them.
243
- apiDescribe ( 'Fields with special characters' , ( persistence : boolean ) => {
243
+ apiDescribe ( 'Fields with special characters' , persistence => {
244
244
const testData = ( n ?: number ) : AnyTestData => {
245
245
n = n || 1 ;
246
246
return {
@@ -340,7 +340,7 @@ apiDescribe('Fields with special characters', (persistence: boolean) => {
340
340
} ) ;
341
341
} ) ;
342
342
343
- apiDescribe ( 'Timestamp Fields in snapshots' , ( persistence : boolean ) => {
343
+ apiDescribe ( 'Timestamp Fields in snapshots' , persistence => {
344
344
// Figure out how to pass in the Timestamp type
345
345
// eslint-disable-next-line @typescript-eslint/no-explicit-any
346
346
const testDataWithTimestamps = ( ts : any ) : AnyTestData => {
@@ -379,7 +379,7 @@ apiDescribe('Timestamp Fields in snapshots', (persistence: boolean) => {
379
379
} ) ;
380
380
} ) ;
381
381
382
- apiDescribe ( '`undefined` properties' , ( persistence : boolean ) => {
382
+ apiDescribe ( '`undefined` properties' , persistence => {
383
383
const settings = { ...DEFAULT_SETTINGS } ;
384
384
settings . ignoreUndefinedProperties = true ;
385
385
0 commit comments