Merge pull request #612 from immich-app/add/web-ui-tests-setup

Add web UI components tests setup

@alextran1502 I'll get this merged so I can add CI checks for the web as well. Let me know if you have any questions 😃
This commit is contained in:
Jaime Baez
2022-09-08 11:24:08 +02:00
committed by GitHub
9 changed files with 508 additions and 12 deletions

View File

@@ -9,7 +9,7 @@
import NavigationBar from '$lib/components/shared-components/navigation-bar.svelte';
import SideBar from '$lib/components/shared-components/side-bar/side-bar.svelte';
import PlusBoxOutline from 'svelte-material-icons/PlusBoxOutline.svelte';
import { useAlbums } from './albums-bloc';
import { useAlbums } from './albums.bloc';
export let data: PageData;

View File

@@ -1,5 +1,5 @@
import { jest, describe, it, expect, beforeEach, afterEach } from '@jest/globals';
import { useAlbums } from '../albums-bloc';
import { useAlbums } from '../albums.bloc';
import { api, CreateAlbumDto } from '@api';
import {
notificationController,