mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
12 lines
256 B
JavaScript
12 lines
256 B
JavaScript
import {
|
|
ATTRIBUTES,
|
|
} from '../../common/script/constants';
|
|
|
|
describe('constants', () => {
|
|
describe('ATTRIBUTES', () => {
|
|
it('provides a list of attributes', () => {
|
|
expect(ATTRIBUTES).to.eql(['str', 'int', 'per', 'con']);
|
|
});
|
|
});
|
|
});
|