mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 18:54:26 +08:00
29 lines
856 B
TypeScript
29 lines
856 B
TypeScript
import { params, suite, test } from '@testdeck/jest'
|
|
import { faker } from '@faker-js/faker'
|
|
import { Severity } from 'allure-js-commons'
|
|
|
|
import { ApiError, Session, SupabaseClient, User, UserAttributes } from '@supabase/supabase-js'
|
|
|
|
import { FEATURE } from '../templates/enums'
|
|
import { description, feature, log, severity, step } from '../../.jest/jest-custom-reporter'
|
|
import { Hooks } from './hooks'
|
|
|
|
@suite('storage')
|
|
class Storage extends Hooks {
|
|
@feature(FEATURE.STORAGE)
|
|
@severity(Severity.BLOCKER)
|
|
@description('When you create public bucket then it has to be available')
|
|
@test.skip
|
|
async 'create public bucket'() {
|
|
// todo
|
|
}
|
|
|
|
@feature(FEATURE.STORAGE)
|
|
@severity(Severity.BLOCKER)
|
|
@description('When you create private bucket then it has to be available')
|
|
@test.skip
|
|
async 'create private bucket'() {
|
|
// todo
|
|
}
|
|
}
|