Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Acid Chicken (硫酸鶏)
5a23d5abfb
Update reaction-lib.ts 2019-03-27 02:07:38 +09:00
Acid Chicken (硫酸鶏)
40649977f4
Update package.json 2019-03-27 02:06:55 +09:00
2 changed files with 3 additions and 2 deletions

View file

@ -22,6 +22,9 @@
"test": "gulp test", "test": "gulp test",
"format": "gulp format" "format": "gulp format"
}, },
"resolutions": {
"ts-node": "8.0.1"
},
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.15", "@fortawesome/fontawesome-svg-core": "1.2.15",
"@fortawesome/free-brands-svg-icons": "5.7.2", "@fortawesome/free-brands-svg-icons": "5.7.2",

View file

@ -8,7 +8,6 @@
* > mocha test/reaction-lib.ts --require ts-node/register -g 'test name' * > mocha test/reaction-lib.ts --require ts-node/register -g 'test name'
*/ */
/*
import * as assert from 'assert'; import * as assert from 'assert';
import { toDbReaction } from '../src/misc/reaction-lib'; import { toDbReaction } from '../src/misc/reaction-lib';
@ -90,4 +89,3 @@ describe('toDbReaction', async () => {
assert.strictEqual(await toDbReaction('unknown'), 'like'); assert.strictEqual(await toDbReaction('unknown'), 'like');
}); });
}); });
*/