-
Notifications
You must be signed in to change notification settings - Fork 6
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
Feature/fix tests #102
base: develop
Are you sure you want to change the base?
Feature/fix tests #102
Conversation
BREAKING CHANGE: decouples method from test library. compare now returns a boolean value instead of applying test assertions.
bump estatico-utils dependencyversion
bump estatico-utils version
bump estatico-utils dependency version
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-utils dependency
bump estatico-boilerplate patch version because of devDependencies major version upgrades
Conflicts: .travis.yml packages/estatico-sass/package.json
@@ -1,5 +1,7 @@ | |||
language: node_js | |||
node_js: | |||
- "10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
didn't we say only 12 and 14?
test.afterEach(() => del(path.join(__dirname, '/results'))); | ||
|
||
test('default', t => new Promise((resolve) => { | ||
task(defaults)() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we re-write this to something less condensed? this is kinda hard to read.
const result = task(defaults);
result().on('finish', () => { ... });
would work, too, right?
@@ -1,3 +1,4 @@ | |||
// TODO => Get postcss plugin working properly. Currently not prefixing or minifying as expected. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you try that after merging dev into this branch? i've cleaned up estatico-sass
quite a bit
make tests pass
refactor out test.cb()
remove side effects from estatico-utils test.compareFiles method