npmvue.js80% confidence\u2191 10

TypeError: default is not a function when using vitest

Full error message
I'm using vitest to do some unit tests in my vue application.
I've written some tests but they fail with the error message: 'TypeError: default is not a function'.
But I do not use a function called default() in my code.

import getInfo from './info';

vi.mock('axios', () => {
    return {
        default: {
            get: vi.fn()
        }
    }
});

test('fn getInfo() should request api with axios.get url', async () => {
    const spyAxios = vi.spyOn(axios, 'get');
    await getInfo('1234');
    expect(spyAxios).toHaveBeenCalledWith(`${process.env.VUE_APP_API_BASE_URL}`);
});

If I then execute npm run test the result is the following:

 FAIL  src/api/info/info.test.js > fn getInfo() should request api with axios.get url
TypeError: default is not a function
 ❯ src/api/info/info.test.js:61:22
     59| test('fn getInfo() should request api with axios.get url', async () => {
     60|     const spyAxios = vi.spyOn(axios, 'get');
     61|     await getInfo('1234');
       |                  ^
     62|     expect(spyAxios).toHaveBeenCalledWith(`${process.env.VUE_APP_API_BASE_URL}`);
     63| });

The info.ts file looks like the following:

import { useLoginStore } from "../../store/LoginStore";
import axios from "axios";

// eslint-disable-next-line
export async function getInfo(param: string) : Promise<any> {
    const loginStore = useLoginStore();
    axios.defaults.headers.common = {'Authorization': `Bearer ${loginStore.accessToken}`};
    
    const request = await axios.get(
        process.env.VUE_APP_API_BASE_URL
    );

    if (request?.status == 200) {
        return request.data;
    }
    else {
        return null;
    }
}

Does anyone know what's going on here?

The default attribute in your return object is not a function (default: {...}). Instead, you would return something like this: vi.mock('axios', () => ({ default: () => ({ get: vi.fn(), post: vi.fn(), }), }));

API access

Get this solution programmatically \u2014 free, no authentication.

curl https://depscope.dev/api/error/455ee2c01c7c8599bd5df48acecf1568b27eb61878d3e281d34053b180fcf940
hash \u00b7 455ee2c01c7c8599bd5df48acecf1568b27eb61878d3e281d34053b180fcf940
TypeError: default is not a function when using vitest — DepScope fix | DepScope