Skip to content

Commit eecc7cc

Browse files
committed
fix
1 parent 2f9f65b commit eecc7cc

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

packages/beachball/src/__functional__/packageManager/packagePublish.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { removeTempDir, tmpdir } from '../../__fixtures__/tmpdir';
66
import * as npmModule from '../../packageManager/npm';
77
import { packagePublish } from '../../packageManager/packagePublish';
88
import type { PackageInfo } from '../../types/PackageInfo';
9-
import { npm, NpmResult } from '../../packageManager/npm';
9+
import type { npm, NpmResult } from '../../packageManager/npm';
1010
import { writeJson } from '../../object/writeJson';
1111
import { getNpmPackageInfo } from '../../packageManager/getNpmPackageInfo';
1212
import { env } from '../../env';
@@ -24,9 +24,7 @@ const testPackage = { name: testName, version: testVersion };
2424
// The rest mock npm calls for efficiency (but could potentially be updated to use real npm if
2525
// a bug is found that would have been caught that way).
2626
//
27-
// TODO: re-enable when jest and verdaccio are updated
28-
// eslint-disable-next-line no-restricted-properties
29-
describe.skip('packagePublish', () => {
27+
describe('packagePublish', () => {
3028
let npmSpy: jest.SpiedFunction<typeof npm>;
3129
let tempRoot: string;
3230
let tempPackageJsonPath: string;

0 commit comments

Comments
 (0)