- Fix error parsing
- Add missing
yield
in thelogin
function
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
sourceCompatibility = JavaVersion.VERSION_1_8 | |
targetCompatibility = JavaVersion.VERSION_1_8 | |
eclipseJdt << { | |
ant.propertyfile(file: ".settings/org.eclipse.core.resources.prefs") { | |
ant.entry(key: "eclipse.preferences.version", value: "1") | |
ant.entry(key: "encoding/<project>", value: "utf-8") |
var expect = require('expect'); | |
describe.only('Sample', function () { | |
beforeEach(function () { | |
this.currentTest.value = 'Winning!'; | |
}); | |
it('Uses current test data', function () { | |
expect(this.test.value).to.equal('Winning!'); |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
import { types } from 'mobx-state-tree' | |
import { getModelType, getModelTypes } from './get-model-type' | |
const TestModel = types.model('models', { | |
id: types.identifier, | |
name: types.literal('frodo'), | |
}) | |
const TestModel2 = types.model('other-models', { | |
id: types.identifier, |