Skip to content

Instantly share code, notes, and snippets.

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