This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from mocks-server/release
Release v2.1.0
- Loading branch information
Showing
16 changed files
with
297 additions
and
255 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module.exports = { | ||
options: { | ||
port: 3200 | ||
} | ||
port: 3200, | ||
log: "debug", | ||
}, | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
//eslint-disable-next-line | ||
module.exports = FOO |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ const user2 = new Behavior([getUser2]); | |
|
||
module.exports = { | ||
base, | ||
user2 | ||
user2, | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,20 +3,20 @@ const getUser = { | |
method: "GET", | ||
response: { | ||
status: 200, | ||
body: [{ email: "[email protected]" }] | ||
} | ||
body: [{ email: "[email protected]" }], | ||
}, | ||
}; | ||
|
||
const getUser2 = { | ||
url: "/api/user", | ||
method: "GET", | ||
response: { | ||
status: 200, | ||
body: [{ email: "[email protected]" }] | ||
} | ||
body: [{ email: "[email protected]" }], | ||
}, | ||
}; | ||
|
||
module.exports = { | ||
getUser, | ||
getUser2 | ||
getUser2, | ||
}; |
Oops, something went wrong.