mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
chore: fix noop inspector, update integration tests
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
import { GraphInspector } from './graph-inspector';
|
||||
|
||||
export const NoopGraphInspector: GraphInspector = Object.create(
|
||||
const noop = () => {};
|
||||
export const NoopGraphInspector: GraphInspector = new Proxy(
|
||||
GraphInspector.prototype,
|
||||
{
|
||||
get: () => noop,
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user