-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(metadata): defined the conventional tag for octoherd-script proj…
…ects
- Loading branch information
Showing
5 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import {promises as fs} from 'fs'; | ||
|
||
export default function ({projectRoot}) { | ||
return fs.writeFile(`${projectRoot}/index.js`, 'export async function script(octokit, repository) {}'); | ||
export default async function ({projectRoot}) { | ||
await fs.writeFile(`${projectRoot}/index.js`, 'export async function script(octokit, repository) {}'); | ||
|
||
return {tags: ['octoherd-script']}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
test/integration/features/step_definitions/metadata-steps.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import {Then} from '@cucumber/cucumber'; | ||
import {assert} from 'chai'; | ||
|
||
Then('project metadata is generated', async function () { | ||
const {tags} = this.result; | ||
|
||
assert.deepEqual(tags, ['octoherd-script']); | ||
}); |