Skip to content

Commit

Permalink
refactor(*): applying Pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Acatl Pacheco committed Jan 24, 2018
1 parent 7b9aa50 commit 21be7b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/data-point-codemods/LICENSE
@@ -1,4 +1,4 @@
Copyright 2017 Viacom Inc.
Copyright 2018 Viacom Inc.

Apache License
Version 2.0, January 2004
Expand Down Expand Up @@ -188,7 +188,7 @@ Copyright 2017 Viacom Inc.
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2017 Viacom Inc.
Copyright 2018 Viacom Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Expand Up @@ -11,7 +11,7 @@ const request = require('supertest')
const logger = require('./logger')
logger.clear()

describe.only('create - inspect middleware', () => {
describe('create - inspect middleware', () => {
let dataPoint
beforeAll(() => {
dataPoint = DataPoint.create({
Expand Down
2 changes: 1 addition & 1 deletion packages/data-point/lib/core/transform.test.js
Expand Up @@ -189,7 +189,7 @@ describe('resolve', () => {
)
})

test('transform - execute with 3 argumennts', () => {
test('transform - execute with 3 arguments', () => {
const value = {
foo: 'bar'
}
Expand Down
2 changes: 1 addition & 1 deletion packages/data-point/lib/helpers/helpers.test.js
Expand Up @@ -31,7 +31,7 @@ describe('helpers.reducifyAll', () => {
expect(rLodash.pick(input)(value)).toEqual({ a: 1, c: 3 })
})

test('reducify specificy keys', () => {
test('reducify specific keys', () => {
const rLodash = helpers.reducifyAll(_, ['pick', 'map', 'find'])
const input = ['a', 'c']
const value = { a: 1, b: 2, c: 3 }
Expand Down

0 comments on commit 21be7b0

Please sign in to comment.