ZaynMalloc

Results 15 comments of ZaynMalloc

thanks, I'm working on it right now

I cloned the repo. When I run npm run dev, I get an error, and I am stuck at the "Loading the application, please hold on page". ``` zach@zach-VirtualBox:~/Documents/Code/meeting-for-good$ npm...

I'm having some problems. I am writing tests for the /api/user endpoint. I keep on getting 403 errors. How do I bypass authentication for testing? ``` import chai from 'chai';...

I am trying to add fixtures to seed data for testing. I am using the pow-mongodb-fixtures module (https://www.npmjs.com/package/pow-mongoose-fixtures). However, I get this error: ``` TypeError: Undefined type `undefined` at `calendarId.required`...

I was trying to test the model by the way. ``` import chai from 'chai'; import chaiHttp from 'chai-http'; import chaiJSONSchema from 'chai-json-schema'; import mongoose from 'mongoose' import fixtures from...

I changed fixture.js ``` export default { users: [ { googleId: 'googletest@email', facebookId: 'facebooktest@email', emails: ['[email protected]', 'email2@email'], name: 'name', avatar: 'avatar', accessToken: '12345', refreshToken: '54321', enablePrimaryCalendar: true, GoogleSelectedCalendars: [{ calendarId:...