Skip to content

Commit cebf8bb

Browse files
committed
remove Focus on tests
1 parent e59777d commit cebf8bb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/php/integration/composer_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func testComposer(platform switchblade.Platform, fixtures string) func(*testing.
3838
})
3939

4040
context("default PHP composer app", func() {
41-
it.Focus("builds and runs the app", func() {
41+
it("builds and runs the app", func() {
4242
deployment, logs, err := platform.Deploy.
4343
WithEnv(map[string]string{
4444
"COMPOSER_GITHUB_OAUTH_TOKEN": os.Getenv("COMPOSER_GITHUB_OAUTH_TOKEN"),
@@ -100,7 +100,7 @@ func testComposer(platform switchblade.Platform, fixtures string) func(*testing.
100100
// composer.json explicitly required "^8.3". The fix restores v4 semantics: only the
101101
// top-level require.php in composer.json is used for version selection.
102102
context("composer.json requires ^8.3 with stale <8.3.0 package constraints in composer.lock", func() {
103-
it.Focus("selects PHP 8.3, ignoring stale package constraints in composer.lock (issue #1220)", func() {
103+
it("selects PHP 8.3, ignoring stale package constraints in composer.lock (issue #1220)", func() {
104104
deployment, logs, err := platform.Deploy.
105105
Execute(name, filepath.Join(fixtures, "composer_83_version_selection"))
106106
Expect(err).NotTo(HaveOccurred(), logs.String)
@@ -118,7 +118,7 @@ func testComposer(platform switchblade.Platform, fixtures string) func(*testing.
118118
})
119119

120120
if !settings.Cached {
121-
context.Focus("deployed with invalid COMPOSER_GITHUB_OAUTH_TOKEN", func() {
121+
context("deployed with invalid COMPOSER_GITHUB_OAUTH_TOKEN", func() {
122122
it("logs warning", func() {
123123
_, logs, err := platform.Deploy.
124124
WithEnv(map[string]string{

0 commit comments

Comments
 (0)