Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
fix: fixes wrong strings interpolation in test suits
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zakharchenko committed May 17, 2019
1 parent b7b4452 commit 1038ec8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/validate-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('Gavel proxies to functions with callbacks', () => {
describe('isValidatable', () => {
describe('when I provide data from README (good objects)', () => {
['response', 'request'].forEach((variant) => {
describe('for two cloned #{variant}s', () => {
describe(`for two cloned ${variant}s`, () => {
let results = null;
let error = null;

Expand Down Expand Up @@ -195,7 +195,7 @@ describe('Gavel proxies to functions with callbacks', () => {
describe('validate', () => {
describe('when I provide data', () => {
['response', 'request'].forEach((variant) => {
describe('for two cloned #{variant}s', () => {
describe(`for two cloned ${variant}s`, () => {
let results = null;
let error = null;

Expand All @@ -217,7 +217,7 @@ describe('Gavel proxies to functions with callbacks', () => {
it('should results be an object', () => assert.isObject(results));
});

describe('for similar #{variant}s', () => {
describe(`for similar ${variant}s`, () => {
let results = null;
let error = null;

Expand All @@ -239,7 +239,7 @@ describe('Gavel proxies to functions with callbacks', () => {
it('should results be an object', () => assert.isObject(results));
});

describe('for different #{variant}s', () => {
describe(`for different ${variant}s`, () => {
let results = null;
let error = null;

Expand Down

0 comments on commit 1038ec8

Please sign in to comment.