Skip to content

Commit

Permalink
styles: Pluralize test folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Oct 9, 2021
1 parent b442f55 commit 8b95a19
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> ❌', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🗒', () => {
Expand Down
2 changes: 1 addition & 1 deletion app/templates/nestjsMongoose/E2E/__name__/show.spec.ts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🔍', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'

describe('\n[E2E] <%= namePascal %> 🧱', () => {
it('should create a new <%= nameCamel %>', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🛠', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> ❌', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🗒', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🔍', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'

describe('\n[E2E] <%= namePascal %> 🧱', () => {
it('should create a new <%= nameCamel %>', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🛠', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> ❌', () => {
Expand Down
2 changes: 1 addition & 1 deletion app/templates/nestjsTypeOrm/E2E/__name__/index.spec.ts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🗒', () => {
Expand Down
2 changes: 1 addition & 1 deletion app/templates/nestjsTypeOrm/E2E/__name__/show.spec.ts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🔍', () => {
Expand Down
2 changes: 1 addition & 1 deletion app/templates/nestjsTypeOrm/E2E/__name__/store.spec.ts.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'

describe('\n[E2E] <%= namePascal %> 🧱', () => {
it('should create a new <%= nameCamel %>', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as request from 'supertest'

import { Debug } from '@secjs/logger'
import { AppModule } from 'app/AppModule'
import { App, Database } from 'test/Utils'
import { App, Database } from 'tests/Utils'
import { <%= namePascal %>Factory } from 'database/factories/<%= namePascal %>Factory'

describe('\n[E2E] <%= namePascal %> 🛠', () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-secjs",
"version": "1.2.4",
"version": "1.2.5",
"description": "🧬 Generator for any NodeJS Project or Framework",
"main": "app/index.js",
"scripts": {
Expand Down

0 comments on commit 8b95a19

Please sign in to comment.