-
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.
chore (#36): add maintenance tooling (#38)
* adds cypress, config, and test * adds netlify cypress plugin and toml config * adds descriptive title to test * adds renovate config file * adds testing docs and toc * adds cypress, config, and test * adds netlify cypress plugin and toml config * adds descriptive title to test * adds testing docs and toc * fix: Adds dedicated version to plugin * fix(deps): update dependency @netlify/plugin-nextjs to 4.9 * fix(deps): update dependency @netlify/plugin-nextjs to 4.10 * fix(deps): update dependency @netlify/plugin-nextjs to 4.11 * chore(deps): update dependency eslint-config-next to v12.2.0 * chore(deps): update dependency eslint-config-next to v12.2.2 * fix(deps): update dependency @netlify/plugin-nextjs to 4.12 * fix(deps): update dependency @netlify/plugin-nextjs to 4.13 (#57) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency eslint-config-next to v12.2.3 * fix(deps): update dependency @netlify/plugin-nextjs to 4.14 * removes lock Co-authored-by: Prince Wilson <[email protected]> Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e51d26b
commit af72a88
Showing
7 changed files
with
16,851 additions
and
208 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const { defineConfig } = require('cypress'); | ||
|
||
module.exports = defineConfig({ | ||
e2e: { | ||
baseUrl: 'http://localhost:3000', | ||
supportFile: false, | ||
}, | ||
}); |
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,9 @@ | ||
describe('sample render test', () => { | ||
beforeEach(() => { | ||
cy.visit('/'); | ||
}); | ||
|
||
it('displays the title text', () => { | ||
cy.get('h1').contains('Next.js Blog Theme'); | ||
}); | ||
}); |
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
Oops, something went wrong.