Commit b17a629c authored by Kyle Keating's avatar Kyle Keating

Revert "Include experimental in "all" config contexts"

This reverts commit e4b6004183fc4fe8b8b10000c700cdb4613b528d.
parent 5e4783f8
......@@ -61,14 +61,7 @@ function configurationKeys(appContext) {
return contexts.notebook;
case 'all':
// Complete list of configuration keys used for testing.
return [
...contexts.annotator,
...contexts.sidebar,
...contexts.notebook,
// "experimental" currently has no uses in any app contexts, but is included
// for test coverage
'experimental',
];
return [...contexts.annotator, ...contexts.sidebar, ...contexts.notebook];
default:
throw new Error(`Invalid application context used: "${appContext}"`);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment