@@ -152,13 +152,13 @@ describe('boardEject', () => {
152152 ] )
153153 } )
154154
155- it ( 'renders an empty community .plugins.ts with no showcase wiring when the manifest is empty' , async ( ) => {
155+ it ( 'renders an empty meith .plugins.ts with no showcase wiring when the manifest is empty' , async ( ) => {
156156 const target = join ( targetParent , 'my-board' )
157157 await boardEject ( [ target ] )
158158
159- const generated = await readFile ( join ( target , 'community .plugins.ts' ) , 'utf8' )
159+ const generated = await readFile ( join ( target , 'meith .plugins.ts' ) , 'utf8' )
160160 expect ( generated ) . toContain ( 'export const INSTALLED_PLUGINS: readonly InstalledPlugin[] = []' )
161- expect ( generated ) . not . toContain ( 'community .demo.plugins' )
161+ expect ( generated ) . not . toContain ( 'meith .demo.plugins' )
162162 expect ( generated ) . not . toContain ( 'showcasePlugins' )
163163 } )
164164
@@ -171,7 +171,7 @@ describe('boardEject', () => {
171171
172172 await boardEject ( [ target ] )
173173
174- const generated = await readFile ( join ( target , 'community .plugins.ts' ) , 'utf8' )
174+ const generated = await readFile ( join ( target , 'meith .plugins.ts' ) , 'utf8' )
175175 expect ( generated ) . toContain (
176176 "import { messages as duesMessages, plugin as duesPlugin } from '@meith/plugin-dues'" ,
177177 )
@@ -185,7 +185,7 @@ describe('boardEject', () => {
185185 expect ( generated ) . toContain (
186186 "{ key: 'reference', enabled: false, plugin: referencePlugin, messages: referenceMessages }," ,
187187 )
188- expect ( generated ) . not . toContain ( 'community .demo.plugins' )
188+ expect ( generated ) . not . toContain ( 'meith .demo.plugins' )
189189 } )
190190
191191 it ( 'prints next steps naming what does not move' , async ( ) => {
0 commit comments