Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@uppy/transloadit: unskip test #4514

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions packages/@uppy/transloadit/src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ describe('Transloadit', () => {
)
})

// For some reason this test doesn't pass on CI
it.skip('Can start an assembly with no files and no fields', async () => {
it('Can start an assembly with no files and no fields', async () => {
const server = createServer((req, res) => {
res.setHeader('Access-Control-Allow-Origin', '*')
res.setHeader('Access-Control-Allow-Headers', '*')
Expand All @@ -123,8 +122,7 @@ describe('Transloadit', () => {
await new Promise((resolve) => server.close(resolve))
})

// For some reason this test doesn't pass on CI
it.skip('Can start an assembly with no files and some fields', async () => {
it('Can start an assembly with no files and some fields', async () => {
const server = createServer((req, res) => {
res.setHeader('Access-Control-Allow-Origin', '*')
res.setHeader('Access-Control-Allow-Headers', '*')
Expand Down