Skip to content

Commit

Permalink
fix: inconsistent descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
federicocarboni committed Oct 5, 2020
1 parent 5cb16f2 commit 7b39fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/env_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ import { expect } from 'chai';

describe('env', function () {
describe('setFFmpegPath()', function () {
it('throws on an invalid path', function () {
it('should throw on an invalid path', function () {
expect(() => setFFmpegPath('broken/:path')).to.throw(TypeError);
});
});
describe('setFFprobePath()', function () {
it('throws on an invalid path', function () {
it('should throw on an invalid path', function () {
expect(() => setFFprobePath('broken/:path')).to.throw(TypeError);
});
});

describe('getFFmpegPath()', function () {
it('returns a string', function () {
it('should return a string', function () {
expect(getFFmpegPath()).to.be.a('string');
});
});
describe('getFFprobePath()', function () {
it('returns a string', function () {
it('should return a string', function () {
expect(getFFprobePath()).to.be.a('string');
});
});
Expand Down

0 comments on commit 7b39fc0

Please sign in to comment.