@@ -43,7 +43,7 @@ import { DEFAULT_SETTINGS } from '../util/settings';
4343// eslint-disable-next-line @typescript-eslint/no-explicit-any
4444type AnyTestData = any ;
4545
46- apiDescribe ( 'Nested Fields' , ( persistence : boolean ) => {
46+ apiDescribe ( 'Nested Fields' , persistence => {
4747 const testData = ( n ?: number ) : AnyTestData => {
4848 n = n || 1 ;
4949 return {
@@ -240,7 +240,7 @@ apiDescribe('Nested Fields', (persistence: boolean) => {
240240// NOTE(mikelehen): I originally combined these tests with the above ones, but
241241// Datastore currently prohibits having nested fields and fields with dots in
242242// the same entity, so I'm separating them.
243- apiDescribe ( 'Fields with special characters' , ( persistence : boolean ) => {
243+ apiDescribe ( 'Fields with special characters' , persistence => {
244244 const testData = ( n ?: number ) : AnyTestData => {
245245 n = n || 1 ;
246246 return {
@@ -340,7 +340,7 @@ apiDescribe('Fields with special characters', (persistence: boolean) => {
340340 } ) ;
341341} ) ;
342342
343- apiDescribe ( 'Timestamp Fields in snapshots' , ( persistence : boolean ) => {
343+ apiDescribe ( 'Timestamp Fields in snapshots' , persistence => {
344344 // Figure out how to pass in the Timestamp type
345345 // eslint-disable-next-line @typescript-eslint/no-explicit-any
346346 const testDataWithTimestamps = ( ts : any ) : AnyTestData => {
@@ -379,7 +379,7 @@ apiDescribe('Timestamp Fields in snapshots', (persistence: boolean) => {
379379 } ) ;
380380} ) ;
381381
382- apiDescribe ( '`undefined` properties' , ( persistence : boolean ) => {
382+ apiDescribe ( '`undefined` properties' , persistence => {
383383 const settings = { ...DEFAULT_SETTINGS } ;
384384 settings . ignoreUndefinedProperties = true ;
385385
0 commit comments