Jest期望不会从异步等待函数中捕获

问题描述 投票:2回答:2

我正在使用MongoDB和Mongoose测试typescript-express ap。对于这个测试,我使用的是jest和mongo-memory-server。我能够测试插入新文档并将现有文档检索到数据库中,但是当文档不存在时我无法捕获错误。

const getUserByEmail = async (email: string): Promise<UserType> => {
  try {
    const user = await User.findOne({ email });
    if (!user) {
      const validationErrorObj: ValidationErrorType = {
        location: 'body',
        param: 'email',
        msg: 'User with this email does not exist!',
        value: email,
      };
      const validationError = new ValidationError('Validation Error', 403, [
        validationErrorObj,
      ]);
      throw validationError;
    }
    return user;
  } catch (err) {
    throw new Error(err);
  }
};


let mongoServer: any;
describe('getUserByEmail', (): void => {
  let mongoServer: any;
  const opts = {}; // remove this option if you use mongoose 5 and above
  const email = '[email protected]';
  const password = 'testPassword';
  const username = 'testUsername';

  beforeAll(async () => {
    mongoServer = new MongoMemoryServer();
    const mongoUri = await mongoServer.getConnectionString();
    await mongoose.connect(mongoUri, opts, err => {
      if (err) console.error(err);
    });
    const user = new User({
      email,
      password,
      username,
    });
    await user.save();
  });

  afterAll(async () => {
    mongoose.disconnect();
    await mongoServer.stop();
  });

  it('fetching registered user', async (): Promise<void> => {
    const user = await getUserByEmail(email);
    expect(user).toBeTruthy();
    expect(user.email).toMatch(email);
    expect(user.password).toMatch(password);
    expect(user.username).toMatch(username);
  }, 100000);
  it('fetching non registered user', async (): Promise<void> => {
    const notRegisteredEmail = '[email protected]';
    expect(await getUserByEmail(notRegisteredEmail)).toThrowError();
  }, 100000);
});
typescript express jestjs integration-testing supertest
2个回答
0
投票

我之前遇到过这个问题,我发现传入一个匿名函数使它工作:

const throwFn = () => { throw new Error() };

// won't work
it('should throw', () => {
  expect(throwFn()).toThrow();
});

// works ¯\_(ツ)_/¯
it('should throw', () => {
  expect(() => throwFn()).toThrow();
});

0
投票

我在这里找到了解决方案jest issues on github

it('fetching non registered user', async (): Promise<void> => {
    const nonRegisteredEmail = 'nonREgisteredEmail.com';
    await expect(getUserByEmail(nonRegisteredEmail)).rejects.toThrow(
      new Error('Error: Validation Error'),
    );
  }, 100000);
© www.soinside.com 2019 - 2024. All rights reserved.