diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).
 
+## [1.1.2] - 2026-08-07
+
+### Fixed
+
+- Pass command-line arguments to hspec.
+
 ## [1.1.1] - 2026-07-26
 
 ### Added
diff --git a/hspec-effectful.cabal b/hspec-effectful.cabal
--- a/hspec-effectful.cabal
+++ b/hspec-effectful.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 name: hspec-effectful
-version: 1.1.1
+version: 1.1.2
 synopsis: Effectful driver for Hspec
 category: Test
 description:
diff --git a/src/Effectful/Hspec.hs b/src/Effectful/Hspec.hs
--- a/src/Effectful/Hspec.hs
+++ b/src/Effectful/Hspec.hs
@@ -132,7 +132,6 @@
 import Data.Typeable (typeOf)
 import Effectful
 import Effectful.Dispatch.Static
-import Effectful.Environment (runEnvironment, withArgs)
 import Effectful.Exception (Exception, throwIO, try)
 import Effectful.HUnit (Assertion, HUnit, runHUnit, (@?=))
 import Effectful.HUnit qualified as HUnit
@@ -169,7 +168,7 @@
                     }
             . inject
             $ action
-    runEnvironment . withArgs [] . liftIO $ Hspec.hspecWith config spec
+    liftIO $ Hspec.hspecWith config spec
     pure a
 
 runHspecWith :: (IOE :> es) => Config -> Eff (Hspec ': es) a -> Eff es a
