Kamil Chmielowski
Web / Angular
Jasmine code coverage report for cv app.
You can contact with me by email: kamilchmielowski94@gmail.com or my page.
Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | 1x 1x 1x 1x | import { GalleryModel } from './gallery/gallery.model'; export const CvGallery: GalleryModel[] = [ { srcUrl: 'https://i.ibb.co/wMpsk7X/cv-dark.webp', previewUrl: 'https://i.ibb.co/syYWMWJ/cv-dark-preview.webp', altKey: 'projects.gallery.image.cv-dark' }, { srcUrl: 'https://i.ibb.co/gmzPHwZ/cv-light.webp', previewUrl: 'https://i.ibb.co/ZVKPjpL/cv-light-preview.webp', altKey: 'projects.gallery.image.cv-light' }, { srcUrl: 'https://i.ibb.co/YcjWCxX/cv-part2.webp', previewUrl: 'https://i.ibb.co/zHv6dLZ/cv-part2-preview.webp', altKey: 'projects.gallery.image.cv-part2' }, { srcUrl: 'https://i.ibb.co/88H52DJ/cv-projects.webp', previewUrl: 'https://i.ibb.co/6RbQJfj/cv-projects-preview.webp', altKey: 'projects.gallery.image.cv-projects' } ]; export const WeatherGallery: GalleryModel[] = [ { srcUrl: 'https://i.ibb.co/1sDTGM2/weather-welcome.webp', previewUrl: 'https://i.ibb.co/dtpxrRH/weather-welcome-preview.webp', altKey: 'projects.gallery.image.weather-welcome' }, { srcUrl: 'https://i.ibb.co/gwHY2x4/weather-main.webp', previewUrl: 'https://i.ibb.co/cDp9JJ6/weather-main-preview.webp', altKey: 'projects.gallery.image.weather-main' }, { srcUrl: 'https://i.ibb.co/WnvRrfM/weather-map.webp', previewUrl: 'https://i.ibb.co/jGJMPLT/weather-map-preview.webp', altKey: 'projects.gallery.image.weather-map' }, { srcUrl: 'https://i.ibb.co/pbx1Y2r/weather-settings.webp', previewUrl: 'https://i.ibb.co/5rwhT8N/weather-settings-preview.webp', altKey: 'projects.gallery.image.weather-settings' } ]; export const BibleGallery: GalleryModel[] = [ { srcUrl: 'https://i.ibb.co/hR17rmP/ap-greek.webp', previewUrl: 'https://i.ibb.co/2tpfdnr/ap-greek-preview.webp', altKey: 'projects.gallery.image.ap-greek' }, { srcUrl: 'https://i.ibb.co/q1B2dcp/ap-bible-search.webp', previewUrl: 'https://i.ibb.co/q9KG64C/ap-bible-search-preview.webp', altKey: 'projects.gallery.image.ap-bible-search' }, { srcUrl: 'https://i.ibb.co/QntmZGV/ap-bible-compare.webp', previewUrl: 'https://i.ibb.co/3CWkxym/ap-bible-compare-preview.webp', altKey: 'projects.gallery.image.ap-bible-compare' }, { srcUrl: 'https://i.ibb.co/59LSm81/ap-timeline.webp', previewUrl: 'https://i.ibb.co/wwSYZ16/ap-timeline-preview.webp', altKey: 'projects.gallery.image.ap-timeline' }, { srcUrl: 'https://i.ibb.co/S3nbpfh/ap-diagram.webp', previewUrl: 'https://i.ibb.co/ZGKHMcM/ap-diagram-preview.webp', altKey: 'projects.gallery.image.ap-diagram' }, { srcUrl: 'https://i.ibb.co/6v2HPfK/ap-homepage.webp', previewUrl: 'https://i.ibb.co/4FWxnkb/ap-homepage-preview.webp', altKey: 'projects.gallery.image.ap-homepage' } ]; export const SongbookGallery: GalleryModel[] = [ { srcUrl: 'https://i.ibb.co/4WVV72D/bezpieczna-przystan.webp', previewUrl: 'https://i.ibb.co/8Bzvn09/bezpieczna-przystan-preview.webp', altKey: 'projects.gallery.image.bezpieczna-przystan' }, { srcUrl: 'https://i.ibb.co/x6nSmvR/spiewnik-pielgrzyma.webp', previewUrl: 'https://i.ibb.co/446X6d6/spiewnik-pielgrzyma-preview.webp', altKey: 'projects.gallery.image.spiewnik-pielgrzyma' }, { srcUrl: 'https://i.ibb.co/sV2y4md/spiewnik-pielgrzyma2.webp', previewUrl: 'https://i.ibb.co/rc7Xsc9/spiewnik-pielgrzyma2-preview.webp', altKey: 'projects.gallery.image.spiewnik-pielgrzyma2' }, { srcUrl: 'https://i.ibb.co/9VvP3rD/bezpieczna-przystan2.webp', previewUrl: 'https://i.ibb.co/7gDB6GS/bezpieczna-przystan2-preview.webp', altKey: 'projects.gallery.image.bezpieczna-przystan2' } ]; |