We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const {} = require
1 parent a999850 commit 8a74c7aCopy full SHA for 8a74c7a
1 file changed
test.js
@@ -1,13 +1,8 @@
1
'use strict';
2
3
-const {
4
- pythonBridge,
5
- PythonException,
6
- isPythonException,
7
- } = require('./');
8
-// let pythonBridge = require('./');
9
-// let PythonException = pythonBridge.PythonException;
10
-// let isPythonException = pythonBridge.isPythonException;
+let pythonBridge = require('./');
+let PythonException = pythonBridge.PythonException;
+let isPythonException = pythonBridge.isPythonException;
11
let test = require('tap').test;
12
let Promise = require('bluebird');
13
let mkdirTemp = Promise.promisify(require('temp').mkdir);
0 commit comments