Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
254 Bytes
import { login } from './lib/login.ts'
import { GraphQL } from './lib/graphql.ts'
import { check } from 'k6'
export default function (): void {
const gql = new GraphQL(login())
check(gql.userID, {
'userID is not empty': (u) => u !== '',
})
}