-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split out test exes into separate package
- Loading branch information
1 parent
33b5c28
commit a9d65d4
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
opam-version: "1.2" | ||
name: "livereload-tests" | ||
depends: [ | ||
"jbuilder" {build} | ||
"livereload" | ||
"opium" {test} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
(jbuild_version 1) | ||
|
||
|
||
(executable | ||
((name test_server) | ||
(public_name test_server) | ||
(package livereload-tests) | ||
(modules (test_server)) | ||
(libraries (livereload websocket-lwt.cohttp)))) | ||
|
||
(executable | ||
((name test_files_server) | ||
(public_name test_files_server) | ||
(package livereload-tests) | ||
(modules (test_files_server)) | ||
(libraries (livereload websocket-lwt.cohttp inotify.lwt)))) | ||
|
||
(executable | ||
((name test_opium_server) | ||
(public_name test_opium_server) | ||
(package livereload-tests) | ||
(modules (test_opium_server)) | ||
(libraries (livereload websocket-lwt.cohttp inotify.lwt opium)))) |