Skip to content

Commit

Permalink
find and replace has failed me
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao committed Dec 13, 2024
1 parent 72fdff4 commit ab17e7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/core/test/slow/api_spec_slow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,15 @@ for (const nodeInstaller of ['npm', 'yarn']) {
});
});

it('creates api.config.js and is packageable', async () => {
it('creates forge.config.js and is packageable', async () => {
await updatePackageJSON(dir, async (packageJSON) => {
packageJSON.name = 'Name';
packageJSON.productName = 'ProductName';
});

await api.import({ dir });

expect(fs.existsSync(path.join(dir, 'api.config.js'))).to.equal(true);
expect(fs.existsSync(path.join(dir, 'forge.config.js'))).to.equal(true);

execSync(`${nodeInstaller} install`, {
cwd: dir,
Expand Down

0 comments on commit ab17e7b

Please sign in to comment.