Skip to content

Commit

Permalink
refactor: improve test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Zlatin Stanimirov committed Mar 5, 2022
1 parent f93ef88 commit 209d00e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/decorator/decorator.factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Decorator Factory', () => {
"export const Foo = (...args: string[]) => SetMetadata('foo', args);\n",
);
});
it('should keep underscores', async () => {
it("should keep underscores on application's name", async () => {
const options: DecoratorOptions = {
name: '_bar/_foo',
flat: false,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/filter/filter.factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('Filter Factory', () => {
);
});

it('should keep underscores', async () => {
it('should keep underscores on path only', async () => {
const options: FilterOptions = {
name: '_foo',
};
Expand Down

0 comments on commit 209d00e

Please sign in to comment.