Skip to content

Instantly share code, notes, and snippets.

@rsmelo92
Created January 4, 2020 01:38
Show Gist options
  • Save rsmelo92/2d535c77aa14bf690790732095016ab1 to your computer and use it in GitHub Desktop.
Save rsmelo92/2d535c77aa14bf690790732095016ab1 to your computer and use it in GitHub Desktop.
describe('province', function() {
let asia;
beforeEach(function() {
asia = new Province(sampleProvinceData());
});
it('shortfall', function() {
expect(asia.shortfall).equal(5);
});
it('profit', function() {
expect(asia.profit).equal(230);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment