File tree 2 files changed +66
-1
lines changed
2 files changed +66
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { testBlock } from "bingo-stratum-testers" ;
2
+ import { describe , expect , test } from "vitest" ;
3
+
4
+ import { blockPnpmDedupe } from "./blockPnpmDedupe.js" ;
5
+ import { optionsBase } from "./options.fakes.js" ;
6
+
7
+ describe ( "blockPnpmDedupe" , ( ) => {
8
+ test ( "production" , ( ) => {
9
+ const creation = testBlock ( blockPnpmDedupe , {
10
+ options : optionsBase ,
11
+ } ) ;
12
+
13
+ expect ( creation ) . toMatchInlineSnapshot ( `
14
+ {
15
+ "addons": [
16
+ {
17
+ "addons": {
18
+ "sections": {
19
+ "Linting": {
20
+ "contents": {
21
+ "items": [
22
+ "- \`pnpm lint:packages\` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the \`pnpm-lock.yml\` file",
23
+ ],
24
+ },
25
+ },
26
+ },
27
+ },
28
+ "block": [Function],
29
+ },
30
+ {
31
+ "addons": {
32
+ "jobs": [
33
+ {
34
+ "name": "Lint Packages",
35
+ "steps": [
36
+ {
37
+ "run": "pnpm lint:packages",
38
+ },
39
+ ],
40
+ },
41
+ ],
42
+ "removedWorkflows": [
43
+ "lint-packages",
44
+ ],
45
+ },
46
+ "block": [Function],
47
+ },
48
+ {
49
+ "addons": {
50
+ "cleanupCommands": [
51
+ "pnpm dedupe",
52
+ ],
53
+ "properties": {
54
+ "scripts": {
55
+ "lint:packages": "pnpm dedupe --check",
56
+ },
57
+ },
58
+ },
59
+ "block": [Function],
60
+ },
61
+ ],
62
+ }
63
+ ` ) ;
64
+ } ) ;
65
+ } ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const blockPnpmDedupe = base.createBlock({
31
31
removedWorkflows : [ "lint-packages" ] ,
32
32
} ) ,
33
33
blockPackageJson ( {
34
- cleanupCommands : [ "pnpm dedupe --offline " ] ,
34
+ cleanupCommands : [ "pnpm dedupe" ] ,
35
35
properties : {
36
36
scripts : {
37
37
"lint:packages" : "pnpm dedupe --check" ,
You can’t perform that action at this time.
0 commit comments