Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ general:
- "packages/docs"
machine:
node:
version: 5.1
version: 6.1.0
dependencies:
cache_directories:
- packages/core/node_modules
Expand Down
4 changes: 2 additions & 2 deletions gulp/karma.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ module.exports = (gulp, plugins, blueprint) => {
"test/index.ts",
];

// include blueprint's CSS in all projects
if (project.id !== "blueprint") {
// include core's CSS in all projects
if (project.id !== "core") {
filesToInclude.push("node_modules/@blueprint/core/**/*.css");
}

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
"@types/tether": "1.1.27",
"better-handlebars": "github:wmeldon/better-handlebars",
"chai": "3.5.0",
"del": "2.2.1",
"enzyme": "2.4.1",
"del": "2.2.2",
"enzyme": "2.5.1",
"eslint": "3.1.1",
"eslint-config-palantir": "1.0.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-bump": "2.2.0",
"gulp-autoprefixer": "3.1.1",
"gulp-bump": "2.4.0",
"gulp-concat": "2.6.0",
"gulp-connect": "4.2.0",
"gulp-count": "0.2.0",
"gulp-count": "0.3.0",
"gulp-eslint": "3.0.1",
"gulp-filter": "4.0.0",
"gulp-if": "2.0.1",
"gulp-insert": "0.5.0",
"gulp-less": "3.1.0",
"gulp-load-plugins": "1.2.4",
"gulp-load-plugins": "1.3.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-sass": "2.3.2",
Expand All @@ -45,7 +45,7 @@
"gulp-tslint": "6.0.2",
"gulp-typescript": "2.13.4",
"gulp-util": "3.0.7",
"highlights": "1.4.0",
"highlights": "1.4.1",
"istanbul-instrumenter-loader": "0.2.0",
"json-loader": "0.5.4",
"karma": "0.13.22",
Expand All @@ -65,7 +65,7 @@
"language-typescript": "github:giladgray/language-typescript",
"lerna": "2.0.0-beta.30",
"lodash": "4.13.1",
"marked": "0.3.5",
"marked": "0.3.6",
"merge-stream": "1.0.0",
"mocha": "2.5.3",
"phantomjs-prebuilt": "2.1.7",
Expand All @@ -74,17 +74,17 @@
"react-addons-test-utils": "15.3.1",
"react-dom": "15.3.1",
"run-sequence": "1.2.2",
"sinon": "1.17.4",
"sorted-object": "2.0.0",
"string-replace-loader": "^1.0.0",
"sinon": "1.17.6",
"sorted-object": "2.0.1",
"string-replace-loader": "1.0.0",
"stylelint": "7.0.3",
"stylelint-config-palantir": "1.1.0",
"stylelint-scss": "1.2.1",
"ts-loader": "0.8.2",
"ts-quick-docs": "0.4.0",
"tslint": "3.14.0-dev.1",
"tslint-react": "0.4.0",
"typescript": "2.0.3",
"typescript": "2.0.6",
"vinyl-source-stream": "1.1.0",
"webpack": "1.13.1",
"wiredep": "4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/controls/radioGroupTests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("RadioGroup", () => {
<Radio value="two" label="Two" />
</RadioGroup>
);
assert.lengthOf(group.find("input:checked"), 0);
assert.lengthOf(group.find({ checked: true }), 0);
});

it("selectedValue checks that value", () => {
Expand Down