Skip to content

Commit ca4089f

Browse files
authored
Merge pull request #17 from mkbug-com/feature_add_emoji
up
2 parents b8855a0 + 94d9e9b commit ca4089f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

bin/mkbug.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const MkbugError = require('./base.mkbugerror');
99
class Mkbug {
1010
constructor(app, opts = {}) {
1111
LOG(`Welcome to Mkbug.js (NODE_ENV = ${process.env.NODE_ENV || ''})\n`);
12+
LOG(` ╭∩╮(︶︿︶)╭∩╮\n`);
1213

1314
this.app = app;
1415
this.basePath = opts.path && path.resolve(process.cwd(), opts.path) || path.resolve(process.cwd(), 'src');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkbugjs",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"description": "An OOP style declare Nodejs Web framework base on Express.js",
55
"main": "index.js",
66
"scripts": {

test/controller.header.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ describe("Controller Header", () => {
2222
ret = err;
2323
} finally {
2424
expect(ret.status).toBe(200);
25-
console.log(ret.header)
2625
expect(ret.header['from-header']).toBe('from-header');
2726
}
2827
});

0 commit comments

Comments
 (0)