This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(next-steps): removed the todo for the extension that now happens …
…programatically
- Loading branch information
Showing
5 changed files
with
28 additions
and
38 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,12 +1,23 @@ | ||
Feature: ESLint Configs | ||
|
||
Scenario: No existing config | ||
Scenario: No existing config, but no updates | ||
Given no existing eslint config file is present | ||
When the scaffolder results are processed | ||
Then no eslint config file exists | ||
|
||
Scenario: existing yaml config | ||
Scenario: No existing config, but updates provided | ||
Given no existing eslint config file is present | ||
And the results include eslint configs | ||
When the scaffolder results are processed | ||
Then no eslint config file exists | ||
|
||
Scenario: existing yaml config without updates | ||
Given an existing eslint config file is present | ||
When the scaffolder results are processed | ||
Then no updates are applied to the existing yaml config file | ||
|
||
Scenario: existing yaml config with updates | ||
Given an existing eslint config file is present | ||
And the results include eslint configs | ||
When the scaffolder results are processed | ||
Then the yaml eslint config file contains the expected config | ||
Then the yaml eslint config file is updated with the provided simple configs |
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