chore: bump version (#4083)

This commit is contained in:
Alex Yang
2023-08-31 18:50:03 -05:00
committed by GitHub
parent 1e30a3c7fe
commit 25671e2134
19 changed files with 503 additions and 775 deletions

View File

@@ -2,6 +2,8 @@ import { PutObjectCommand, S3Client } from '@aws-sdk/client-s3';
import { Inject, Injectable } from '@nestjs/common';
import { crc32 } from '@node-rs/crc32';
import { fileTypeFromBuffer } from 'file-type';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore - no types
import { getStreamAsBuffer } from 'get-stream';
import { Config } from '../../config';

View File

@@ -106,11 +106,11 @@ describe('Workspace Module', () => {
const user = await signUp(app, 'u1', 'u1@affine.pro', '1');
const workspace = await createWorkspace(app, user.token.token);
rejects(
await rejects(
getPublicWorkspace(app, 'not_exists_ws'),
'must not get not exists workspace'
);
rejects(
await rejects(
getPublicWorkspace(app, workspace.id),
'must not get private workspace'
);