2022-06-15 01:07:54 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2024-01-01 02:43:48 -06:00
|
|
|
// Copyright (C) 2013 - 2024, The pgAdmin Development Team
|
2022-06-15 01:07:54 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2022-06-15 01:07:54 -05:00
|
|
|
import {DebuggerArgumentSchema} from '../../../pgadmin/tools/debugger/static/js/components/DebuggerArgs.ui';
|
2023-10-23 07:13:17 -05:00
|
|
|
import {genericBeforeEach, getCreateView} from '../genericFunctions';
|
2022-06-15 01:07:54 -05:00
|
|
|
|
|
|
|
describe('DebuggerArgs', () => {
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2022-06-21 00:17:08 -05:00
|
|
|
let schemaObj = new DebuggerArgumentSchema();
|
2022-06-15 01:07:54 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
genericBeforeEach();
|
|
|
|
});
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
it('create', async () => {
|
|
|
|
await getCreateView(schemaObj);
|
2022-06-15 01:07:54 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|