mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Fix eslint
This commit is contained in:
parent
0185f743e8
commit
d98a05a476
@ -9,7 +9,7 @@ let app
|
||||
let port
|
||||
|
||||
beforeEach(async () => {
|
||||
const server = createServer({mocks})
|
||||
const server = createServer({ mocks })
|
||||
app = await server.start({ port: 0 })
|
||||
port = app.address().port
|
||||
getHost = () => `http://127.0.0.1:${port}`
|
||||
@ -45,7 +45,7 @@ describe.only('login', () => {
|
||||
describe('asking for a `token`', () => {
|
||||
describe('with valid email/password combination', () => {
|
||||
it('responds with a JWT token', async () => {
|
||||
const data = await request(getHost(), mutation({email: 'test@example.org', password: '1234'}))
|
||||
const data = await request(getHost(), mutation({ email: 'test@example.org', password: '1234' }))
|
||||
const { token } = data.login
|
||||
jwt.verify(token, process.env.JWT_SECRET, (err, data) => {
|
||||
expect(data.email).toEqual('test@example.org')
|
||||
@ -57,7 +57,7 @@ describe.only('login', () => {
|
||||
describe('with a valid email but incorrect password', () => {
|
||||
it('responds with "Incorrect email address or password."', async () => {
|
||||
try {
|
||||
await request(getHost(), mutation({email: 'test@example.org', password: 'wrong'}))
|
||||
await request(getHost(), mutation({ email: 'test@example.org', password: 'wrong' }))
|
||||
} catch (error) {
|
||||
expect(error.response.errors[0].message).toEqual('Incorrect email address or password.')
|
||||
}
|
||||
@ -67,7 +67,7 @@ describe.only('login', () => {
|
||||
describe('with a non-existing email', () => {
|
||||
it('responds with "Incorrect email address or password."', async () => {
|
||||
try {
|
||||
await request(getHost(), mutation({email: 'non-existent@example.org', password: 'wrong'}))
|
||||
await request(getHost(), mutation({ email: 'non-existent@example.org', password: 'wrong' }))
|
||||
} catch (error) {
|
||||
expect(error.response.errors[0].message).toEqual('Incorrect email address or password.')
|
||||
}
|
||||
|
||||
@ -5,6 +5,7 @@ import { HttpLink } from 'apollo-link-http'
|
||||
import { InMemoryCache } from 'apollo-cache-inmemory'
|
||||
import neo4j from '../../bootstrap/neo4j'
|
||||
import { query } from '../../graphql-schema'
|
||||
import fetch from 'node-fetch'
|
||||
|
||||
dotenv.config()
|
||||
|
||||
@ -21,7 +22,7 @@ const driver = neo4j().getDriver()
|
||||
const session = driver.session()
|
||||
|
||||
const builders = {
|
||||
"user": require('./users.js').default,
|
||||
'user': require('./users.js').default
|
||||
}
|
||||
|
||||
const buildMutation = (model, parameters) => {
|
||||
@ -29,7 +30,7 @@ const buildMutation = (model, parameters) => {
|
||||
}
|
||||
|
||||
const create = async (model, parameters) => {
|
||||
await client.mutate({mutation: gql(buildMutation(model, parameters))})
|
||||
await client.mutate({ mutation: gql(buildMutation(model, parameters)) })
|
||||
}
|
||||
|
||||
const cleanDatabase = async () => {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import faker from 'faker'
|
||||
|
||||
export default function (params){
|
||||
export default function (params) {
|
||||
const {
|
||||
name = faker.name.findName(),
|
||||
email = faker.internet.email(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user