From 136e11daddd9f78199693289dfa860d593deda92 Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Mon, 2 Sep 2024 16:46:08 +0700 Subject: [PATCH] chore: use same import style as readme --- test/bootstrap/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bootstrap/index.js b/test/bootstrap/index.js index 8c890b6..fb26e17 100644 --- a/test/bootstrap/index.js +++ b/test/bootstrap/index.js @@ -1,7 +1,7 @@ import * as originalChai from 'chai'; import * as http from 'http'; // this import is available from defining `imports` in package.json -import project, { request } from 'chai-http'; +import {default as project, request } from 'chai-http'; global.http = http;