Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit d50f2e6

Browse files
committed
update test snapshot
1 parent 2c3575d commit d50f2e6

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

test/snapshots/index.test.js.md

+113
Original file line numberDiff line numberDiff line change
@@ -3212,3 +3212,116 @@ Generated by [AVA](https://ava.li).
32123212
}␊
32133213
}␊
32143214
`
3215+
3216+
## verify ui: Framevuerk
3217+
3218+
> Generated package.json
3219+
3220+
[
3221+
'.editorconfig',
3222+
'.gitignore',
3223+
'README.md',
3224+
'assets/README.md',
3225+
'components/FramevuerkLogo.vue',
3226+
'components/Logo.vue',
3227+
'components/README.md',
3228+
'framevuerk-config.js',
3229+
'layouts/README.md',
3230+
'layouts/default.vue',
3231+
'middleware/README.md',
3232+
'nuxt.config.js',
3233+
'package.json',
3234+
'pages/README.md',
3235+
'pages/index.vue',
3236+
'plugins/README.md',
3237+
'plugins/framevuerk.js',
3238+
'static/README.md',
3239+
'static/favicon.ico',
3240+
'store/README.md',
3241+
]
3242+
3243+
> package.json
3244+
3245+
{
3246+
dependencies: {
3247+
framevuerk: '^2.2.5',
3248+
nuxt: '^2.0.0',
3249+
},
3250+
devDependencies: {
3251+
'framevuerk-builder': '^2.0.2',
3252+
nodemon: '^1.18.9',
3253+
},
3254+
private: true,
3255+
scripts: {
3256+
build: 'nuxt build',
3257+
'build:framevuerk': 'framevuerk-builder -c ./framevuerk-config.js',
3258+
dev: 'nuxt',
3259+
generate: 'nuxt generate',
3260+
prepublish: 'npm run build:framevuerk',
3261+
start: 'nuxt start',
3262+
},
3263+
}
3264+
3265+
> Generated nuxt.config.js
3266+
3267+
`␊
3268+
export default {␊
3269+
mode: 'universal',␊
3270+
/*␊
3271+
** Headers of the page␊
3272+
*/␊
3273+
head: {␊
3274+
title: process.env.npm_package_name || '',␊
3275+
meta: [␊
3276+
{ charset: 'utf-8' },␊
3277+
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },␊
3278+
{ hid: 'description', name: 'description', content: process.env.npm_package_description || '' }␊
3279+
],␊
3280+
link: [␊
3281+
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }␊
3282+
,␊
3283+
{␊
3284+
rel: 'stylesheet',␊
3285+
href:␊
3286+
'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'␊
3287+
}␊
3288+
]␊
3289+
},␊
3290+
/*␊
3291+
** Customize the progress-bar color␊
3292+
*/␊
3293+
loading: { color: '#fff' },␊
3294+
/*␊
3295+
** Global CSS␊
3296+
*/␊
3297+
css: [␊
3298+
'framevuerk/dist/framevuerk-nuxt.min.css'␊
3299+
],␊
3300+
/*␊
3301+
** Plugins to load before mounting the App␊
3302+
*/␊
3303+
plugins: [␊
3304+
'@/plugins/framevuerk'␊
3305+
],␊
3306+
/*␊
3307+
** Nuxt.js dev-modules␊
3308+
*/␊
3309+
devModules: [␊
3310+
],␊
3311+
/*␊
3312+
** Nuxt.js modules␊
3313+
*/␊
3314+
modules: [␊
3315+
],␊
3316+
/*␊
3317+
** Build configuration␊
3318+
*/␊
3319+
build: {␊
3320+
/*␊
3321+
** You can extend webpack config here␊
3322+
*/␊
3323+
extend(config, ctx) {␊
3324+
}␊
3325+
}␊
3326+
}␊
3327+
`

test/snapshots/index.test.js.snap

332 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)