diff --git a/ginkgo/unfocus_command.go b/ginkgo/unfocus_command.go index 683c3a998..994562b4f 100644 --- a/ginkgo/unfocus_command.go +++ b/ginkgo/unfocus_command.go @@ -26,6 +26,7 @@ func unfocusSpecs([]string, []string) { unfocus("Measure") unfocus("DescribeTable") unfocus("Entry") + unfocus("Specify") } func unfocus(component string) { diff --git a/integration/_fixtures/focused_fixture/focused_fixture_test.go b/integration/_fixtures/focused_fixture/focused_fixture_test.go index 16ad16de1..d2c67751d 100644 --- a/integration/_fixtures/focused_fixture/focused_fixture_test.go +++ b/integration/_fixtures/focused_fixture/focused_fixture_test.go @@ -22,6 +22,10 @@ var _ = Describe("FocusedFixture", func() { }) + FSpecify("focused", func() { + + }) + FMeasure("focused", func(b Benchmarker) { }, 2) diff --git a/integration/subcommand_test.go b/integration/subcommand_test.go index 6a1913ad3..281ab17ae 100644 --- a/integration/subcommand_test.go +++ b/integration/subcommand_test.go @@ -354,8 +354,8 @@ var _ = Describe("Subcommand", func() { Eventually(session).Should(gexec.Exit(types.GINKGO_FOCUS_EXIT_CODE)) output := session.Out.Contents() - Ω(output).Should(ContainSubstring("6 Passed")) - Ω(output).Should(ContainSubstring("5 Skipped")) + Ω(string(output)).Should(ContainSubstring("7 Passed")) + Ω(string(output)).Should(ContainSubstring("5 Skipped")) session = startGinkgo(pathToTest, "blur") Eventually(session).Should(gexec.Exit(0)) @@ -363,8 +363,8 @@ var _ = Describe("Subcommand", func() { session = startGinkgo(pathToTest, "--noColor") Eventually(session).Should(gexec.Exit(0)) output = session.Out.Contents() - Ω(output).Should(ContainSubstring("11 Passed")) - Ω(output).Should(ContainSubstring("0 Skipped")) + Ω(string(output)).Should(ContainSubstring("12 Passed")) + Ω(string(output)).Should(ContainSubstring("0 Skipped")) }) })