JS Utils Kit
    Preparing search index...

    Variable isTestConst

    isTest: boolean = ...

    Checks if the current environment is testing.

    This is determined by comparing process.env.NODE_ENV with 'test'.

    true if NODE_ENV is set to test.

    if (isTest) {
    mockDatabase();
    }