Remove remote resources

This commit is contained in:
Gregor Schulte
2023-04-03 21:20:55 +02:00
parent e648aa55f6
commit 22b5e06696
4 changed files with 87 additions and 87 deletions

View File

@@ -3,28 +3,28 @@ module.exports = {
'js', 'js',
'jsx', 'jsx',
'json', 'json',
'vue', 'vue'
], ],
transform: { transform: {
'^.+\\.vue$': 'vue-jest', '^.+\\.vue$': 'vue-jest',
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub', '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
'^.+\\.jsx?$': 'babel-jest', '^.+\\.jsx?$': 'babel-jest'
}, },
transformIgnorePatterns: [ transformIgnorePatterns: [
'/node_modules/', '/node_modules/'
], ],
moduleNameMapper: { moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1', '^@/(.*)$': '<rootDir>/src/$1'
}, },
snapshotSerializers: [ snapshotSerializers: [
'jest-serializer-vue', 'jest-serializer-vue'
], ],
testMatch: [ testMatch: [
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)', '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
], ],
testURL: 'http://localhost/', testURL: 'http://localhost/',
watchPlugins: [ watchPlugins: [
'jest-watch-typeahead/filename', 'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname', 'jest-watch-typeahead/testname'
], ]
} }

View File

@@ -19,7 +19,7 @@
color="white" color="white"
contain contain
> >
<v-img src="https://demos.creative-tim.com/vuetify-material-dashboard/favicon.ico" /> <v-img src="favicon.ico" />
</v-list-item-avatar> </v-list-item-avatar>
<v-list-item-content> <v-list-item-content>

View File

@@ -350,7 +350,7 @@
</template> </template>
<script> <script>
export default { export default {
name: 'DashboardButtons', name: 'DashboardButtons',
data: () => ({ data: () => ({
@@ -360,7 +360,7 @@
'info', 'info',
'success', 'success',
'warning', 'warning',
'error', 'error'
], ],
icons: { icons: {
left: 'mdi-chevron-left', left: 'mdi-chevron-left',
@@ -368,65 +368,65 @@
info: 'mdi-exclamation', info: 'mdi-exclamation',
success: 'mdi-check', success: 'mdi-check',
warning: 'mdi-alert', warning: 'mdi-alert',
error: 'mdi-close', error: 'mdi-close'
}, },
social: [ social: [
{ {
color: '#55ACEE', color: '#55ACEE',
icon: 'mdi-twitter', icon: 'mdi-twitter',
text: 'Connect with Twitter', text: 'Connect with Twitter'
}, },
{ {
color: '#3B5998', color: '#3B5998',
icon: 'mdi-facebook', icon: 'mdi-facebook',
text: 'Share - 2.2K', text: 'Share - 2.2K'
}, },
{ {
color: '#DD4b39', color: '#DD4b39',
icon: 'mdi-google-plus', icon: 'mdi-google-plus',
text: 'Share on Google+', text: 'Share on Google+'
}, },
{ {
color: '#0976B4', color: '#0976B4',
icon: 'mdi-linkedin', icon: 'mdi-linkedin',
text: 'Connect with LinkedIn', text: 'Connect with LinkedIn'
}, },
{ {
color: '#CC2127', color: '#CC2127',
icon: 'mdi-pinterest', icon: 'mdi-pinterest',
text: 'Pint It - 212', text: 'Pint It - 212'
}, },
{ {
color: '#E52D27', color: '#E52D27',
icon: 'mdi-youtube', icon: 'mdi-youtube',
text: 'View on Youtube', text: 'View on Youtube'
}, },
{ {
color: '#35465C', color: '#35465C',
icon: 'mdi-tumblr', icon: 'mdi-tumblr',
text: 'Repost', text: 'Repost'
}, },
{ {
color: '#333333', color: '#333333',
icon: 'mdi-github-circle', icon: 'mdi-github-circle',
text: 'Connect with Github', text: 'Connect with Github'
}, },
{ {
color: '#1769FF', color: '#1769FF',
icon: 'mdi-behance', icon: 'mdi-behance',
text: 'Follow Us', text: 'Follow Us'
}, },
{ {
color: '#EA4C89', color: '#EA4C89',
icon: 'mdi-dribbble', icon: 'mdi-dribbble',
text: 'Follow us on Dribbble', text: 'Follow us on Dribbble'
}, },
{ {
color: '#FF4500', color: '#FF4500',
icon: 'mdi-reddit', icon: 'mdi-reddit',
text: 'Repost - 232', text: 'Repost - 232'
},
],
}),
} }
]
})
}
</script> </script>

View File

@@ -31,7 +31,7 @@
contain contain
> >
<v-img <v-img
src="https://demos.creative-tim.com/vuetify-material-dashboard/favicon.ico" src="favicon.ico"
max-height="30" max-height="30"
/> />
</v-list-item-avatar> </v-list-item-avatar>