Skip to content

Commit

Permalink
Fix experimentalPlugins -> plugins tests (#1823)
Browse files Browse the repository at this point in the history
  • Loading branch information
blakewilson committed Feb 28, 2024
1 parent 33561b6 commit ad2fe8f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/faustwp-core/tests/config/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ describe('config', () => {
// @ts-ignore
templates: [],
// @ts-ignore
experimentalPlugins: [
new HelloWorldTestPlugin(),
new HelloWorldTestPlugin(),
],
plugins: [new HelloWorldTestPlugin(), new HelloWorldTestPlugin()],
});

expect(consoleLogSpy).toBeCalledTimes(2);
Expand All @@ -37,7 +34,7 @@ describe('config', () => {
setConfig({
// @ts-ignore
templates: [],
experimentalPlugins: [
plugins: [
new HelloWorldTestPlugin(),
new InvalidPlugin() as FaustPlugin,
],
Expand Down

0 comments on commit ad2fe8f

Please sign in to comment.