Skip to content

Commit

Permalink
refactor: Rename imported variable
Browse files Browse the repository at this point in the history
  • Loading branch information
davidparsson committed Jul 31, 2024
1 parent 5e7d2f6 commit d2868db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/e2e.spec.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import builderPackage, { type Builder, TestSuite } from '../dist';
import defaultBuilder, { type Builder, TestSuite } from '../dist';
//@ts-ignore
import rmdir from 'rimraf';
import fs from 'fs';

describe('JUnit Report builder', () => {
let builder: Builder;
beforeEach(() => (builder = builderPackage.newBuilder()));
beforeEach(() => (builder = defaultBuilder.newBuilder()));

beforeAll((done) =>
rmdir('build/tmp/test_resources', (error: any) => {
Expand Down

0 comments on commit d2868db

Please sign in to comment.