loopback-boot/test
Miroslav Bajtoš c4b09c6b7a executor: remove `Base` arg from model function
Simplify the contract for functions exported by `models/*.js` files
by removing the second argument `Base`. The base class can be accessed
using `ModelCtor.base`.

An updated example of a model js file:

```js
module.exports = function(Customer) {
  Customer.setup = function() {
    Customer.base.setup.apply(this, arguments);
    // etc.
  };
};
```
2014-07-22 10:59:50 +02:00
..
fixtures executor: remove `Base` arg from model function 2014-07-22 10:59:50 +02:00
helpers Rename `models.json` to `model-config.json` 2014-07-15 11:09:39 +02:00
browser.test.js test: export Int32Array and DataView for browser 2014-07-17 10:05:08 +02:00
compiler.test.js compiler: return a clone of instructions 2014-07-17 18:44:15 +02:00
executor.test.js executor: remove `Base` arg from model function 2014-07-22 10:59:50 +02:00