fix(server): lint

This commit is contained in:
DarkSky
2026-05-04 00:48:23 +08:00
parent d64f368623
commit e90e3e537c
2 changed files with 18 additions and 25 deletions

View File

@@ -61,25 +61,22 @@ test('R2 provider should throw when accountId is missing', t => {
);
});
test(
'R2 provider should use default endpoint when jurisdiction is explicitly undefined',
t => {
const provider = new R2StorageProvider(
{
accountId: 'test-account',
jurisdiction: undefined,
region: 'auto',
credentials: {
accessKeyId: 'test',
secretAccessKey: 'test',
},
test('R2 provider should use default endpoint when jurisdiction is explicitly undefined', t => {
const provider = new R2StorageProvider(
{
accountId: 'test-account',
jurisdiction: undefined,
region: 'auto',
credentials: {
accessKeyId: 'test',
secretAccessKey: 'test',
},
'test-bucket'
);
},
'test-bucket'
);
t.is(
endpointOf(provider),
'https://test-account.r2.cloudflarestorage.com/test-bucket'
);
}
);
t.is(
endpointOf(provider),
'https://test-account.r2.cloudflarestorage.com/test-bucket'
);
});

View File

@@ -3,11 +3,7 @@ import { Type } from '@nestjs/common';
import { JSONSchema } from '../../config';
import { FsStorageConfig, FsStorageProvider } from './fs';
import { StorageProvider } from './provider';
import {
R2_JURISDICTIONS,
R2StorageConfig,
R2StorageProvider,
} from './r2';
import { R2_JURISDICTIONS, R2StorageConfig, R2StorageProvider } from './r2';
import { S3StorageConfig, S3StorageProvider } from './s3';
export type StorageProviderName = 'fs' | 'aws-s3' | 'cloudflare-r2';