* Feat: Initial backend view * Feat: Refactor frame runner * Feat: backend challenge submit runs tests * Feat: Backend challenge request * Feat: Whitelist hyperdev in csp * Fix: Use app tests instead of challenge tests * Feat: Allow hyperdev subdomains * Fix(csp): allow hypderdev.space subdomains * feat(challenge): submit backend * feat: Add timeout to test runner (5 sec) * chore(seed): Add more to test backend * fix(csp): s/hyperdev/gomix/g * fix(app): fix code mirror skeleton filepath * fix(app): remove Gitter saga import * fix(app): codemirrorskeleton does not need it's own folder fix(app): cmk needs to work with Null types * fix: No longer restart the browser when challenges change * fix(app): Update jquery for challenges * fix(seed): Remove to promise jquery call * fix(lint): Undo merge error undefined is no allowed * fix(app): linting errors due to bad merge * fix(seed): Remove old seed file
24 lines
657 B
JavaScript
24 lines
657 B
JavaScript
import analyticsSaga from './analytics-saga.js';
|
|
import codeStorageSaga from './code-storage-saga.js';
|
|
import errSaga from './err-saga.js';
|
|
import executeChallengeSaga from './build-challenge-epic.js';
|
|
import frameEpic from './frame-epic.js';
|
|
import hardGoToSaga from './hard-go-to-saga.js';
|
|
import mouseTrapSaga from './mouse-trap-saga.js';
|
|
import nightModeSaga from './night-mode-saga.js';
|
|
import titleSaga from './title-saga.js';
|
|
import windowSaga from './window-saga.js';
|
|
|
|
export default [
|
|
analyticsSaga,
|
|
codeStorageSaga,
|
|
errSaga,
|
|
executeChallengeSaga,
|
|
frameEpic,
|
|
hardGoToSaga,
|
|
mouseTrapSaga,
|
|
nightModeSaga,
|
|
titleSaga,
|
|
windowSaga
|
|
];
|