debian-mirror-gitlab/spec/frontend/members/guest_overage_confirm_action_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
222 B
JavaScript
Raw Normal View History

2023-03-17 16:20:25 +05:30
import { guestOverageConfirmAction } from '~/members/guest_overage_confirm_action';
describe('guestOverageConfirmAction', () => {
it('returns true', () => {
expect(guestOverageConfirmAction()).toBe(true);
});
});