Skip to content

Commit

Permalink
test: fix breaking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jan 17, 2022
1 parent 4fb51cd commit f58f1d8
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions test/multipart.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -112,7 +112,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -149,7 +149,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -192,7 +192,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -228,7 +228,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -263,7 +263,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -299,7 +299,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -335,7 +335,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand All @@ -359,7 +359,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1, limit: 4000 },
{ maxFields: 1, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -453,7 +453,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -547,7 +547,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -592,7 +592,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -633,7 +633,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -679,7 +679,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down Expand Up @@ -727,7 +727,7 @@ test.group('Multipart', (group) => {
const ctx = app.container.use('Adonis/Core/HttpContext').create('/', {}, req, res)
const multipart = new Multipart(
ctx,
{ maxFields: 1000, limit: 4000 },
{ maxFields: 1000, limit: 8000 },
app.container.use('Adonis/Core/Drive')
)

Expand Down

0 comments on commit f58f1d8

Please sign in to comment.