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