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