We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b0c064 commit ae10d42Copy full SHA for ae10d42
src/projecteuler/helpers/divisors.test.ts
@@ -110,20 +110,6 @@ describe('divisors of a number', () => {
110
expect(isPrime(3000)).toBe(false);
111
});
112
113
- it('abundance of a integer number compared to enum', () => {
114
- expect.assertions(3);
115
-
116
- expect(abundance(10)).toStrictEqual(
117
- ___DIVISORS_ABUNDANCE___.DIVISORS_DEFICIENT
118
- );
119
- expect(abundance(12)).toStrictEqual(
120
- ___DIVISORS_ABUNDANCE___.DIVISORS_ABUNDANT
121
122
- expect(abundance(28)).toStrictEqual(
123
- ___DIVISORS_ABUNDANCE___.DIVISORS_PERFECT
124
125
- });
126
127
it('abundance of a integer number compared to constants', () => {
128
expect.assertions(3);
129
0 commit comments