-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create new concept map #70
Comments
Are these all going to have the properties: should_teach: true
container: true ? |
The plan will be to change the |
I meant to say container = false. That is how it's being filtered for the WorldView. |
Running jestjs/jest#3793 (comment) |
Currently, I have it such that the parent is the top one (ie data types) and the dependency is the bottom one (ie how code runs). This is seen in the code. I was a bit unsure about if dependencies was defined as "we need these to have access to this topic" or "this is a dependency of these topics". I believe it is the first after some looking at the existing conceptInventory.
|
we'll call this jest-related bug for Windows low priority for now until we get to testing next week or week after. admittedly, everyone developed on a mac last summer. |
…play container=true, added onboarding type. #70
Got it working! Tests passed too! Here is what I did:
{
"env": {
"test": {
"presets":[
["es2015", { "modules": false }],
"react",
"stage-0",
"flow"
],
"plugins": [
"transform-es2015-modules-commonjs",
"dynamic-import-node"
]
}
}
}
Now I just run Used these pages: |
Replace old concept map with new one and add property of type (semantic, template).
Steps:
conceptInventory
constantconceptInventory
constant. This new constant will have the same schemas as the previous except atype
property is added to each concept. This type property will either be {concept, template}conceptInventory
with a concept hierarchy as defined in the image belowEnsure the explanations properties exist but feel free to leave them empty (e.g. empty string, empty list).
Ensure test for parent/dependency in tests/data.test.js passes.
EDIT: Clarifying some ambiguities in requirements
should_teach
betrue
for all concepts.container
betrue
for all concepts as well.container
istrue
(currently set tofalse
)onboarding
and have the "How Code Runs" concept be of type onboarding. Everything else is of type concept or type template as specified in the figure above.The text was updated successfully, but these errors were encountered: