diff options
author | Louis Chemineau <louis@chmn.me> | 2024-07-01 23:41:25 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2024-07-02 12:09:47 +0200 |
commit | d73be088848b3fce103e09287198029379564517 (patch) | |
tree | 14ef9fa0c76460ed4f44f6cddfd0571a7495ec93 /cypress/support | |
parent | 124f1aef440cf4623c7b6faa12f64986c2d3fd18 (diff) | |
download | nextcloud-server-d73be088848b3fce103e09287198029379564517.tar.gz nextcloud-server-d73be088848b3fce103e09287198029379564517.zip |
test: Don't use @nc/axios in cypress
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress/support')
-rw-r--r-- | cypress/support/commands.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts index 5a465d0e4f6..6ca0388a0a0 100644 --- a/cypress/support/commands.ts +++ b/cypress/support/commands.ts @@ -3,9 +3,7 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ // eslint-disable-next-line n/no-extraneous-import -import type { AxiosResponse } from 'axios' - -import axios from '@nextcloud/axios' +import axios, { type AxiosResponse } from 'axios' import { addCommands, User } from '@nextcloud/cypress' import { basename } from 'path' |