Skip to content

Commit

Permalink
try with jsconf
Browse files Browse the repository at this point in the history
  • Loading branch information
prakashsvmx committed May 22, 2023
1 parent e6eb60d commit ba50486
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/functional/functional-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,22 @@ import * as url from 'node:url'
import async from 'async'
import chai from 'chai'
import _ from 'lodash'
import { AssumeRoleProvider } from 'minio/dist/main/AssumeRoleProvider.js'
import { CopyDestinationOptions, CopySourceOptions, DEFAULT_REGION } from 'minio/dist/main/helpers.js'
import * as minio from 'minio/dist/main/minio.js'
import { step } from 'mocha-steps'
import splitFile from 'split-file'
import superagent from 'superagent'
import * as uuid from 'uuid'

import { AssumeRoleProvider } from '../../src/AssumeRoleProvider.ts'
import { CopyDestinationOptions, CopySourceOptions, DEFAULT_REGION } from '../../src/helpers.ts'
import { getVersionId } from '../../src/internal/helper.ts'
import * as minio from '../../src/minio.js'

const assert = chai.assert

const isWindowsPlatform = process.platform === 'win32'

function getVersionId(headers = {}) {
return headers['x-amz-version-id'] || null
}

describe('functional tests', function () {
this.timeout(30 * 60 * 1000)
var clientConfigParams = {}
Expand Down
5 changes: 5 additions & 0 deletions tests/functional/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"moduleResolution": "classic",
"allowSyntheticDefaultImports": true,
"exclude": ["dist/**/*", "node_modules/**/*"]
}

0 comments on commit ba50486

Please sign in to comment.