mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* start adding global search filter * update polyfill setup to use async await for react-table * update browerslist to sensible defaults * get global search functionality woring * more progress on the data table * get label network calls working in hostdatatable * get pagination functionality into the HostDataTable * get search query making network call * get ordering making query * make actual sort order network calls * disable cpu column sorting * seperate get table data from get labels * fix issues with input resetting and got search query working * get sort working * ignore vs code editor settings * improve loading spinner to move inside the table * improve styling * add sorting arrows * remove unused sorting arrow component * add host query params to labels endpoint * fix style for query textarea on label hosts * got new pagination working * set server data as source of truth for table global filter * cleanup logs * clean up pagination styles * fix up paginationa and no host styles * add result count to table * remove logs * tweak header styles * fix to sort order * simplify default sort direction * keep sort order of server api responses and use in host table * clean up logs * Add styles for header cell and pagination * fix tests for ManageHostPage * fix tests for HostContainer * fix lower level action reducer and thunk tests * fix tests for hosts client * fix up some host count styling * added back no hosts start message * fix linting errors * remove unused old pagination code * add back scrollToTop utility on pagination * remove unused code in managehostpage test Co-authored-by: Noah Talerman <[email protected]>
79 lines
1.8 KiB
JavaScript
79 lines
1.8 KiB
JavaScript
// used for babel polyfills.
|
|
import 'core-js/stable';
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
import { configure } from 'enzyme';
|
|
import Adapter from 'enzyme-adapter-react-16';
|
|
import nock from 'nock';
|
|
|
|
// Uncomment for verbose unhandled promise rejection warnings
|
|
// process.on('unhandledRejection', (reason) => {
|
|
// console.error('REJECTION', reason);
|
|
// });
|
|
|
|
nock.disableNetConnect();
|
|
|
|
// Many tests will output unhandled promise rejection warnings if this is not
|
|
// included to mock the common HTTP request.
|
|
beforeEach(() => {
|
|
nock('http://localhost:8080')
|
|
.post('/api/v1/fleet/targets', () => true)
|
|
.reply(200, {
|
|
targets_count: 1234,
|
|
targets: [
|
|
{
|
|
id: 3,
|
|
label: 'OS X El Capitan 10.11',
|
|
name: 'osx-10.11',
|
|
platform: 'darwin',
|
|
target_type: 'hosts',
|
|
},
|
|
],
|
|
});
|
|
});
|
|
|
|
afterEach(nock.cleanAll);
|
|
|
|
configure({ adapter: new Adapter() });
|
|
|
|
global.document.queryCommandEnabled = () => { return true; };
|
|
global.document.execCommand = () => { return true; };
|
|
global.window.getSelection = () => {
|
|
return {
|
|
removeAllRanges: () => { return true; },
|
|
};
|
|
};
|
|
global.window.URL = new URL('http://localhost:8080');
|
|
global.navigator = global.window.navigator;
|
|
window.URL.createObjectURL = () => undefined;
|
|
|
|
function mockStorage() {
|
|
let storage = {};
|
|
|
|
return {
|
|
setItem(key, value = '') {
|
|
storage[key] = value;
|
|
},
|
|
getItem(key) {
|
|
return storage[key];
|
|
},
|
|
removeItem(key) {
|
|
delete storage[key];
|
|
},
|
|
get length() {
|
|
return Object.keys(storage).length;
|
|
},
|
|
key(i) {
|
|
return Object.keys(storage)[i] || null;
|
|
},
|
|
clear () {
|
|
storage = {};
|
|
},
|
|
};
|
|
}
|
|
|
|
global.localStorage = mockStorage();
|
|
window.localStorage = global.localStorage;
|
|
|
|
|
|
afterEach(nock.cleanAll);
|