client/server: re-add removed config test line, remove unnecessary import

This commit is contained in:
Max Leiter 2022-04-06 10:48:36 -07:00
parent 2ecf1b21ca
commit 5dabbbe64b
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A3512F2F2F17EBDA
2 changed files with 1 additions and 1 deletions

View file

@ -1,5 +1,4 @@
import styles from '@styles/Home.module.css'
import Header from '@components/header'
import PageSeo from '@components/page-seo'
import HomeComponent from '@components/home'
import { Page, Text } from '@geist-ui/core'

View file

@ -13,6 +13,7 @@ describe("Config", () => {
expect(result).toHaveProperty("enable_admin")
expect(result).toHaveProperty("secret_key")
expect(result).toHaveProperty("registration_password")
expect(result).toHaveProperty("welcome_content")
expect(result).toHaveProperty("welcome_title")
})