Skip to content

Commit 7ef4ee9

Browse files
committed
chore: rename properly rename packages
1 parent b3bbe42 commit 7ef4ee9

21 files changed

+11
-11
lines changed
File renamed without changes.

packages/benchmark.js/package.json renamed to packages/benchmark.js-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@codspeed/benchmark.js",
2+
"name": "@codspeed/benchmark.js-plugin",
33
"version": "0.0.0",
44
"description": "Benchmark.js compatibility layer for CodSpeed",
55
"keywords": [

packages/benchmark.js/tests/unit.test.ts renamed to packages/benchmark.js-plugin/tests/unit.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe("Benchmark", () => {
4242
).run();
4343
expect(mockCore.startInstrumentation).toHaveBeenCalled();
4444
expect(mockCore.stopInstrumentation).toHaveBeenCalledWith(
45-
"packages/benchmark.js/tests/unit.test.ts::RegExpSingle"
45+
"packages/benchmark.js-plugin/tests/unit.test.ts::RegExpSingle"
4646
);
4747
});
4848
});
@@ -70,7 +70,7 @@ describe("Benchmark.Suite", () => {
7070
.run();
7171
expect(mockCore.startInstrumentation).toHaveBeenCalled();
7272
expect(mockCore.stopInstrumentation).toHaveBeenCalledWith(
73-
"packages/benchmark.js/tests/unit.test.ts::RegExp"
73+
"packages/benchmark.js-plugin/tests/unit.test.ts::RegExp"
7474
);
7575
});
7676
it("check suite name is in the uri", () => {
@@ -84,10 +84,10 @@ describe("Benchmark.Suite", () => {
8484
})
8585
.run();
8686
expect(mockCore.stopInstrumentation).toHaveBeenCalledWith(
87-
"packages/benchmark.js/tests/unit.test.ts::thesuite::RegExp"
87+
"packages/benchmark.js-plugin/tests/unit.test.ts::thesuite::RegExp"
8888
);
8989
expect(mockCore.stopInstrumentation).toHaveBeenCalledWith(
90-
"packages/benchmark.js/tests/unit.test.ts::thesuite::unknown_1"
90+
"packages/benchmark.js-plugin/tests/unit.test.ts::thesuite::unknown_1"
9191
);
9292
});
9393
});

0 commit comments

Comments
 (0)