pgadmin4/web/regression/javascript/quick_search/quick_search_spec.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin 4 - PostgreSQL Tools
//
2024-01-01 02:43:48 -06:00
// Copyright (C) 2013 - 2024, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
import React from 'react';
import QuickSearch from '../../../pgadmin/static/js/QuickSearch';
import { render } from '@testing-library/react';
import Theme from '../../../pgadmin/static/js/Theme';
let ctrl;
describe('quick search test cases', function () {
beforeEach(() => {
ctrl = render(
<Theme>
<QuickSearch />
</Theme>
);
});
it('should have rendered quick-search-container', () => {
expect(ctrl.container.firstChild.id).toEqual('quick-search-container');
});
it('should have 2 childs in quick-search-container', () => {
expect(ctrl.container.firstChild.childNodes.length).toEqual(2);
});
it('element should be html element', () => {
expect(ctrl.container.querySelector('#live-search-field')).not.toBeNull();
});
});