Revert "update cloning link"

This reverts commit 4c771f2e05.
This commit is contained in:
Tatiana
2021-05-08 11:25:04 -07:00
parent 60fe6c8b1f
commit 18cffeb940
1791 changed files with 7747 additions and 138307 deletions
+5 -5
View File
@@ -4,22 +4,22 @@ describe('ftoc', function() {
it('works', function() {
expect(ftoc(32)).toEqual(0);
});
it('rounds to 1 decimal', function() {
xit('rounds to 1 decimal', function() {
expect(ftoc(100)).toEqual(37.8);
});
it('works with negatives', function() {
xit('works with negatives', function() {
expect(ftoc(-100)).toEqual(-73.3);
});
});
describe('ctof', function() {
it('works', function() {
xit('works', function() {
expect(ctof(0)).toEqual(32);
});
it('rounds to 1 decimal', function() {
xit('rounds to 1 decimal', function() {
expect(ctof(73.2)).toEqual(163.8);
});
it('works with negatives', function() {
xit('works with negatives', function() {
expect(ctof(-10)).toEqual(14);
});
});