Git Product home page Git Product logo

Comments (4)

ponelat avatar ponelat commented on May 23, 2024

Update:

Just running this in node, it dies...

var expect = require('expect') // v1.15.1
var expect(1).toEqual(1)
expect(1).toEqual(1)
^

TypeError: expect is not a function
    at Object.<anonymous> (/home/josh/projects/spec-map/tmp.js:2:1)
    at Module._compile (module.js:435:26)
    at Object.Module._extensions..js (module.js:442:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:313:12)
    at Function.Module.runMain (module.js:467:10)
    at startup (node.js:136:18)
    at node.js:963:3

from expect.

ponelat avatar ponelat commented on May 23, 2024

So I forked the repo, found that ./lib works ... then I went into the node_modules/expect (in my project)
And found lib/index.js to be this....

'use strict';

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.restoreSpies = exports.isSpy = exports.spyOn = exports.createSpy = exports.extend = exports.assert = undefined;

var _Expectation = require('./Expectation');

var _Expectation2 = _interopRequireDefault(_Expectation);

var _SpyUtils = require('./SpyUtils');

var _assert = require('./assert');

var _assert2 = _interopRequireDefault(_assert);

var _extend = require('./extend');

var _extend2 = _interopRequireDefault(_extend);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

function expect(actual) {
  return new _Expectation2.default(actual);
}

// TODO: Maybe remove these eventually?
expect.createSpy = _SpyUtils.createSpy;
expect.spyOn = _SpyUtils.spyOn;
expect.isSpy = _SpyUtils.isSpy;
expect.restoreSpies = _SpyUtils.restoreSpies;
expect.assert = _assert2.default;
expect.extend = _extend2.default;

exports.default = expect;
exports.assert = _assert2.default;
exports.extend = _extend2.default;
exports.createSpy = _SpyUtils.createSpy;
exports.spyOn = _SpyUtils.spyOn;
exports.isSpy = _SpyUtils.isSpy;
exports.restoreSpies = _SpyUtils.restoreSpies;

from expect.

rstacruz avatar rstacruz commented on May 23, 2024

Thanks for the report! This is a dupe of #72, due to be fixed soon.

from expect.

ponelat avatar ponelat commented on May 23, 2024

ah thanks... sorry I missed the original one.

from expect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.