Skip to content

Commit

Permalink
Merge pull request #242 from serebrov/dev-fix-minor-issues
Browse files Browse the repository at this point in the history
Dev fix minor issues
  • Loading branch information
serebrov authored Nov 13, 2022
2 parents 8198e1d + 077efe7 commit 36db59a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ var pack = require('../package.json')
var webpack = require('webpack')
const VueLoaderPlugin = require('vue-loader/lib/plugin')

var PROD = process.env.NODE_ENV === 'production'
var TEST = process.env.NODE_ENV === 'test'
// var PROD = process.env.NODE_ENV === 'production'
// var TEST = process.env.NODE_ENV === 'test'

var config = {
entry: path.resolve('docs/index.js'),
Expand Down
3 changes: 1 addition & 2 deletions spec/emoji-index-facebook-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('#EmojiIndex', () => {
new EmojiData({
short_names: ['pineapple'],
name: 'Pineapple',
unified: '1f34d',
unified: '1F34D',
added_in: '6.0',
emoticons: undefined,
// The has_img_xxx are deleted from specific files
Expand All @@ -28,7 +28,6 @@ describe('#EmojiIndex', () => {
sheet_x: 6,
sheet_y: 13,
text: '',
unified: '1F34D',
subcategory: 'food-fruit',
}),
])
Expand Down
3 changes: 1 addition & 2 deletions spec/emoji-index-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('#EmojiIndex', () => {
new EmojiData({
short_names: ['pineapple'],
name: 'Pineapple',
unified: '1f34d',
unified: '1F34D',
added_in: '6.0',
emoticons: undefined,
has_img_apple: true,
Expand All @@ -24,7 +24,6 @@ describe('#EmojiIndex', () => {
sheet_x: 6,
sheet_y: 13,
text: '',
unified: '1F34D',
subcategory: 'food-fruit',
}),
])
Expand Down
1 change: 0 additions & 1 deletion spec/search-spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Vue from 'vue'
import { mount } from '@vue/test-utils'

import data from '../data/all.json'
Expand Down

0 comments on commit 36db59a

Please sign in to comment.