Skip to content

Commit

Permalink
Add extra validation to TS scaffold smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
tkcranny committed Nov 1, 2024
1 parent a3a003f commit 6fef779
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/cli/src/smoke-tests/smoke-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,20 @@ describe('smoke tests - setup will take some time', function () {

const triggerPath = path.join(newAppDir, 'src', 'triggers', 'neat.ts');
fs.existsSync(triggerPath).should.be.true();

const newTriggerTest = path.join(
newAppDir,
'src',
'test',
'triggers',
'neat.test.ts'
);
fs.existsSync(newTriggerTest).should.be.true();

const pkg = JSON.parse(
fs.readFileSync(appPackageJson, { encoding: 'utf8' })
);
pkg.name.should.containEql('scaffold-town');
});

it('zapier integrations', function () {
Expand Down

0 comments on commit 6fef779

Please sign in to comment.