diff --git a/spec/api-session-spec.js b/spec/api-session-spec.js index deeb2eba2bcf..749f69a7d6e7 100644 --- a/spec/api-session-spec.js +++ b/spec/api-session-spec.js @@ -541,8 +541,13 @@ describe('session module', () => { let server = null let customSession = null - beforeEach(() => { + beforeEach((done) => { customSession = session.fromPartition('proxyconfig') + // FIXME(deepak1556): This is just a hack to force + // creation of request context which in turn initializes + // the network context, can be removed with network + // service enabled. + customSession.clearHostResolverCache(() => done()) }) afterEach(() => {