Skip to content

Commit

Permalink
Stop supporting k6/experimental/timers
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Sep 10, 2024
1 parent e0c36d3 commit 8fbd265
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions js/jsmodules.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,8 @@ func getInternalJSModules() map[string]interface{} {
"k6/experimental/streams": streams.New(),
"k6/experimental/webcrypto": webcrypto.New(),
"k6/experimental/websockets": &expws.RootModule{},
"k6/experimental/timers": newWarnExperimentalModule(timers.New(),
"The exports of `k6/experimental/timers` are globally available, so no need to import them."+
" The module will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+
" There are no API changes, so this is a drop-in replacement and is also available under `k6/timers`."),
"k6/experimental/timers": newRemovedModule(
"k6/experimental/timers has been graduated, please use k6/timers instead."),
"k6/experimental/tracing": newWarnExperimentalModule(tracing.New(),
"k6/experimental/tracing is now deprecated. All of its functionality is available as pure javascript module."+
" More info available at the docs:"+
Expand Down

0 comments on commit 8fbd265

Please sign in to comment.