Merge branch 'develop' of github.com:Kong/insomnia into develop

This commit is contained in:
Gregory Schier 2020-05-29 13:58:21 -07:00
commit 85b4ddceec
2 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,14 @@
name: Test
on: [push, pull_request]
on:
push:
branches:
- develop
- master
pull_request:
types:
- opened
- synchronize
env:
NPM_CONFIG_TARGET: 3.1.13

View File

@ -2,9 +2,12 @@ import { assertAsyncError, setupDateMocks } from './util';
import { MemPlugin } from '../mem-plugin';
import path from 'path';
import { GIT_CLONE_DIR } from '../git-vcs';
import { isWindows } from '../../../common/constants';
jest.mock('path');
describe.each(['win32', 'posix'])('Memlugin using path.%s', type => {
const paths = isWindows() ? ['win32'] : ['win32', 'posix'];
describe.each([paths])('Memlugin using path.%s', type => {
beforeAll(() => path.__mockPath(type));
afterAll(() => jest.restoreAllMocks());
beforeEach(setupDateMocks);