Files
supabase/tests/features/javascript/functions.spec.ts
2022-04-18 00:10:55 +04:00

21 lines
648 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('functions')
class Functions extends Hooks {
@feature(FEATURE.STORAGE)
@severity(Severity.NORMAL)
@description('When you get functions client then you are able to set auth')
@test.skip
async 'set auth'() {
// todo
}
}