+++ /dev/null
-{
- "env": {
- "jasmine": true,
- "node": true
- },
- "globals": {
- "sinon": false
- }
-}
+++ /dev/null
-/**
- * Copyright 2003-present Greg Hurrell. All rights reserved.
- * Licensed under the terms of the MIT license.
- */
-
-'use strict';
-
-import sinon from 'sinon';
-
-let sandbox;
-
-beforeEach(function() {
- sandbox = sinon.sandbox.create();
-});
-
-afterEach(function() {
- sandbox.restore();
-});
-
-global.sinon = {
- stub() {
- sandbox.stub(...arguments);
- },
-};
+++ /dev/null
-{
- "env": {
- "jasmine": true,
- "node": true
- },
- "globals": {
- "sinon": false
- }
-}
'use strict';
-import convert from '../convert';
+import convert from './convert';
describe('convert()', () => {
describe('converting from binary', () => {
'use strict';
-import multiplyDigits from '../multiplyDigits';
+import multiplyDigits from './multiplyDigits';
describe('multiplyDigits()', () => {
it('multiplies by 0', () => {