This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const request = require('supertest') | |
const app = require('../src/app') | |
const Task = require('../src/models/task') | |
const { | |
userOne, | |
userOneId, | |
userTwo, | |
userTwoId, | |
taskOne, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const request = require('supertest') | |
const app = require('../src/app') | |
const User = require('../src/models/user') | |
const { | |
userOne, | |
userOneId, | |
setupDatabase | |
} = require('./fixtures/db') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> | |
<!-- ============================================================ --> | |
<!-- METADATA --> | |
<!-- ============================================================ --> | |
<!-- ROOT --> | |
<xs:element name="METADATA"> | |
<xs:annotation> |