Всем привет, что то я не понимаю в чем ошибка
Вот код в constants.js
export const users = {
1: {
name: 'Connor',
},
2: {
name: 'Harry',
},
3: {
name: 'Jack',
},
};
В файле helpers.js
import { users } from '/constants.js';
export const getUserName = (userId) => users[userId].name;
В файле solution.js
import { getUserName } from '/helpers.js'
console.log(Hi ${getUserName(1)}, glad to see you
); // Hi Connor, glad to see you
Выдает вот такую ошибку - ● Test suite failed to run Cannot find module '/constants.js' from '189536_4e82929e-0b3d-4096-922e-a5643215ee62/helpers.js'