@@ -7,7 +7,6 @@ import { Options } from "../shared/types.js";
7
7
import { addToolAllContributors } from "../steps/addToolAllContributors.js" ;
8
8
import { finalizeDependencies } from "../steps/finalizeDependencies.js" ;
9
9
import { initializeGitHubRepository } from "../steps/initializeGitHubRepository/index.js" ;
10
- import { populateCSpellDictionary } from "../steps/populateCSpellDictionary.js" ;
11
10
import { runCleanup } from "../steps/runCleanup.js" ;
12
11
import { createWithOptions } from "./createWithOptions.js" ;
13
12
@@ -61,8 +60,6 @@ vi.mock("../steps/writeReadme/index.js");
61
60
62
61
vi . mock ( "../steps/finalizeDependencies.js" ) ;
63
62
64
- vi . mock ( "../steps/populateCSpellDictionary.js" ) ;
65
-
66
63
vi . mock ( "../steps/clearLocalGitTags.js" ) ;
67
64
68
65
vi . mock ( "../steps/runCleanup.js" ) ;
@@ -119,19 +116,18 @@ describe("createWithOptions", () => {
119
116
expect ( addToolAllContributors ) . not . toHaveBeenCalled ( ) ;
120
117
} ) ;
121
118
122
- it ( "does not call finalizeDependencies, populateCSpellDictionary, or runCleanup when skipInstall is true" , async ( ) => {
119
+ it ( "does not call finalizeDependencies or runCleanup when skipInstall is true" , async ( ) => {
123
120
const options = {
124
121
...optionsBase ,
125
122
skipInstall : true ,
126
123
} ;
127
124
128
125
await createWithOptions ( { github, options } ) ;
129
126
expect ( finalizeDependencies ) . not . toHaveBeenCalled ( ) ;
130
- expect ( populateCSpellDictionary ) . not . toHaveBeenCalled ( ) ;
131
127
expect ( runCleanup ) . not . toHaveBeenCalled ( ) ;
132
128
} ) ;
133
129
134
- it ( "calls finalizeDependencies, populateCSpellDictionary, and runCleanup when skipInstall is false" , async ( ) => {
130
+ it ( "calls finalizeDependencies and runCleanup when skipInstall is false" , async ( ) => {
135
131
const options = {
136
132
...optionsBase ,
137
133
skipInstall : false ,
@@ -140,7 +136,6 @@ describe("createWithOptions", () => {
140
136
await createWithOptions ( { github, options } ) ;
141
137
142
138
expect ( finalizeDependencies ) . toHaveBeenCalledWith ( options ) ;
143
- expect ( populateCSpellDictionary ) . toHaveBeenCalled ( ) ;
144
139
expect ( runCleanup ) . toHaveBeenCalled ( ) ;
145
140
} ) ;
146
141
0 commit comments