I have an Ember project with a large theme/stylesheet in the public folder (233MB on disk) (not all files are used).
I run my tests using “ember test --server”.
Whenever i make a change in my code, it takes a lot of time (about 40 secs) for my tests to be rerun.
When i remove the (big) theme from the public folder, the tests rerun in under a second.
I suspect that the public folder is being copied everytime i make a change ?
Is there a way to prevent this (when running tests), or what is a way to make this go faster ?
I’m also running as Admin and used ember-cli-windows.
I’m aware the resources under public are very big (and i will trim it down …),
but i was just wondering if there is some easy thing i can do to make it so that its not copied on every test run…