mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
const noop = () => {};
|
|
|
|
// arguments: url, options
|
|
// https://github.com/socketio/socket.io-client/blob/master/docs/API.md#iourl-options
|
|
export default function mockIo() {
|
|
return {
|
|
on: noop,
|
|
emit: noop,
|
|
once: noop,
|
|
};
|
|
}
|