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