Skip to content

Instantly share code, notes, and snippets.

@rsmelo92
Last active January 4, 2020 01:37
Show Gist options
  • Save rsmelo92/80f50bd8dc7fe4a3de046544a899a9d0 to your computer and use it in GitHub Desktop.
Save rsmelo92/80f50bd8dc7fe4a3de046544a899a9d0 to your computer and use it in GitHub Desktop.
describe('province', function() {
const asia = new Province(sampleProvinceData()); // DON'T DO THIS!
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