Skip to content

Commit

Permalink
test: update snapshots after adding js codehints to minimal starter (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pieh committed Nov 9, 2022
1 parent 73d91db commit adf5f9b
Showing 1 changed file with 16 additions and 4 deletions.
@@ -1,7 +1,10 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`addPlugins gatsby-config.js should not write with no plugins 1`] = `
"module.exports = {
"/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
siteUrl: \`https://www.yourdomain.tld\`,
},
Expand All @@ -11,7 +14,10 @@ exports[`addPlugins gatsby-config.js should not write with no plugins 1`] = `
`;
exports[`addPlugins gatsby-config.js should write a plugin with options 1`] = `
"module.exports = {
"/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
siteUrl: \`https://www.yourdomain.tld\`
},
Expand All @@ -25,7 +31,10 @@ exports[`addPlugins gatsby-config.js should write a plugin with options 1`] = `
`;
exports[`addPlugins gatsby-config.js should write a single plugin 1`] = `
"module.exports = {
"/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
siteUrl: \`https://www.yourdomain.tld\`
},
Expand All @@ -34,7 +43,10 @@ exports[`addPlugins gatsby-config.js should write a single plugin 1`] = `
`;
exports[`addPlugins gatsby-config.js should write multiple plugins 1`] = `
"module.exports = {
"/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
siteUrl: \`https://www.yourdomain.tld\`
},
Expand Down

0 comments on commit adf5f9b

Please sign in to comment.