test(rest): fix missing import (#2734)

Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
This commit is contained in:
Jonathan Ho
2023-01-21 09:56:23 -08:00
committed by GitHub
parent 82f26d6dd6
commit 1c0b22eba2

View File

@@ -1,6 +1,8 @@
import { expect } from 'chai'
import chai, { expect } from 'chai'
import { describe, it } from 'mocha'
import { rest } from './utils.js'
import chaiAsPromised from 'chai-as-promised'
chai.use(chaiAsPromised)
describe('[rest] User related tests', () => {
describe('Get a user from the api', () => {