Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 4bf3f3b

Browse files
committed
fix(remote): export the remote adapter class
1 parent 8469181 commit 4bf3f3b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/fury-adapter-remote/lib/adapter.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,4 @@ class FuryRemoteAdapter {
128128
}
129129
}
130130

131-
module.exports = {
132-
FuryRemoteAdapter,
133-
};
131+
module.exports = FuryRemoteAdapter;

packages/fury-adapter-remote/test/fury-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { expect } = require('chai');
22
const { Fury } = require('fury');
3-
const { FuryRemoteAdapter } = require('../lib/adapter');
3+
const FuryRemoteAdapter = require('../lib/adapter');
44

55
const blueprintSource = 'FORMAT: 1A\n\n# API\n\n';
66
const swaggerSource = '{ "swagger": "2.0", "info": { "version": "1.0.0", "title": "swg" } }';

0 commit comments

Comments
 (0)