summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/mbgl/test/test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/src/mbgl/test/test.cpp b/test/src/mbgl/test/test.cpp
index cbc6cfb102..37447f9d94 100644
--- a/test/src/mbgl/test/test.cpp
+++ b/test/src/mbgl/test/test.cpp
@@ -1,9 +1,12 @@
#include <mbgl/test.hpp>
+#include <mbgl/test/util.hpp>
+
#include <gtest/gtest.h>
namespace mbgl {
int runTests(int argc, char *argv[]) {
+ auto server = std::make_unique<test::Server>("test/storage/server.js");
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}