diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-06-21 11:36:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 11:36:11 +0200 |
commit | 32bbe3db810bb10bde956b1030fb85d5aae16e4c (patch) | |
tree | 8b9f105dfbbf322d925fe81f6cd4bfc4035c96c9 /__tests__/jest-setup.ts | |
parent | 5fb7ea22be0814eb8e1e1e0f2df6032ef53983cc (diff) | |
parent | a70aa61dffe7fc800c048af2c365076f43934767 (diff) | |
download | nextcloud-server-32bbe3db810bb10bde956b1030fb85d5aae16e4c.tar.gz nextcloud-server-32bbe3db810bb10bde956b1030fb85d5aae16e4c.zip |
Merge pull request #38806 from nextcloud/feat/f2v/actions-1
Diffstat (limited to '__tests__/jest-setup.ts')
-rw-r--r-- | __tests__/jest-setup.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/__tests__/jest-setup.ts b/__tests__/jest-setup.ts new file mode 100644 index 00000000000..c0813ff003f --- /dev/null +++ b/__tests__/jest-setup.ts @@ -0,0 +1,23 @@ +/** + * @copyright 2021 François Freitag <mail@franek.fr> + * + * @author François Freitag <mail@franek.fr> + * + * @license AGPL-3.0-or-later + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +import '@testing-library/jest-dom' |