feat: v4.0.0 (#1016)
Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
682576ffc4
commit
799c7e6936
13
cypress/plugins/testBackend.ts
Normal file
13
cypress/plugins/testBackend.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import merge from 'lodash/merge';
|
||||
import { updateConfig } from '../utils/config';
|
||||
|
||||
import type { Config } from '@staticcms/core/interface';
|
||||
import type { SetupBackendResponse } from '../interface';
|
||||
|
||||
export async function setupTestBackend(options: Partial<Config>): Promise<SetupBackendResponse> {
|
||||
await updateConfig(current => {
|
||||
merge(current, options);
|
||||
});
|
||||
|
||||
return null;
|
||||
}
|
Reference in New Issue
Block a user