Skip to content
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

Jasmine fdescribe not supported #15

Open
cdanyl opened this issue May 4, 2016 · 1 comment
Open

Jasmine fdescribe not supported #15

cdanyl opened this issue May 4, 2016 · 1 comment

Comments

@cdanyl
Copy link

cdanyl commented May 4, 2016

The new identifier fdescribe no longer supported in jasmine!

Is there another way to focuse in 'only' one describe?

@bfricka
Copy link

bfricka commented Jun 23, 2017

This has to do w/ the fact that this config uses a single entry point for all tests. E.g.

{
  files: ['./src/test.ts'],
  preprocessors: {'src/test.ts': ['webpack']}
}

For granular test control you'd need to do:

{
  files: ['./src/**/*.spec.ts'],
  preprocessors: {'./src/**/*.ts': ['webpack']}
}

The problem with this that each of those files will create a separate entry point and webpack bundle, which makes it slow and rough on memory. It will give you the ability to use things like xdescribe, fit, fdescribe, etc. though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants