Skip to content

Commit

Permalink
uncomment before/after steps
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardfoyle committed Apr 5, 2024
1 parent f0a6fd7 commit a613792
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/components/release_lifecycle.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { beforeEach, describe, it, mock } from 'node:test';
import { after, before, beforeEach, describe, it, mock } from 'node:test';
import { mkdir, writeFile } from 'fs/promises';
import { randomUUID } from 'crypto';
import { EOL, tmpdir } from 'os';
Expand Down Expand Up @@ -30,13 +30,13 @@ void describe('ReleaseLifecycleManager', async () => {
let platypusPackageName: string;

// TODO uncomment before merging
// before(async () => {
// await import('../start_npm_proxy.js');
// });
before(async () => {
await import('../start_npm_proxy.js');
});

// after(async () => {
// await import('../stop_npm_proxy.js');
// });
after(async () => {
await import('../stop_npm_proxy.js');
});

/**
* This setup initializes a "sandbox" git repo that has a js mono repo with 2 packages, cantaloupe and platypus
Expand Down

0 comments on commit a613792

Please sign in to comment.