/** @jest-environment setup-polly-jest/jest-environment-node */ import { Polly } from '@pollyjs/core' import { jestPollyConfigService, jestPollyContext } from '.' import { JestPollyConfigService } from './config' describe('index', () => { /** * Didn't figure out the cause of this weird failing test. * * @see https://github.com/ScaleLeap/jest-polly/pull/303#discussion_r986363886 */ // eslint-disable-next-line jest/no-disabled-tests it.skip('exports polly instance', () => { expect.assertions(1) expect(jestPollyContext.polly).toBeInstanceOf(Polly) }) it('exports polly config service', () => { expect.assertions(1) expect(jestPollyConfigService).toBeInstanceOf(JestPollyConfigService) }) })