Skip to content

Commit

Permalink
test(module): update describe
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Feb 16, 2019
1 parent d53f141 commit ca8d937
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/custom-file-path.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let nuxt, port
const url = path => `http://localhost:${port}${path}`
const get = path => request(url(path))

describe('Module', () => {
describe('module', () => {
beforeAll(async () => {
config.dev = false
nuxt = new Nuxt(config)
Expand Down
2 changes: 1 addition & 1 deletion test/fail.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let nuxt

consola.mockTypes(() => jest.fn())

describe('Module', () => {
describe('module', () => {
beforeAll(async () => {
config.dev = false
nuxt = new Nuxt(config)
Expand Down
2 changes: 1 addition & 1 deletion test/keepDefaultRouter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let nuxt, port
const url = path => `http://localhost:${port}${path}`
const get = path => request(url(path))

describe('Module', () => {
describe('module', () => {
beforeAll(async () => {
config.dev = false
nuxt = new Nuxt(config)
Expand Down
2 changes: 1 addition & 1 deletion test/ok.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let nuxt, port
const url = path => `http://localhost:${port}${path}`
const get = path => request(url(path))

describe('Module', () => {
describe('module', () => {
beforeAll(async () => {
config.dev = false
nuxt = new Nuxt(config)
Expand Down

0 comments on commit ca8d937

Please sign in to comment.