it('should save on the namespaced model', async () => {
      const response = await routes.post('/api/sync', req);
      expect(model1.save).toHaveBeenCalledWith(dataObject);
      expect(response).toBe('ok');