summaryrefslogtreecommitdiff
path: root/test/main.cpp
blob: 6ae9751c502dd83f23ec62ded613d2e37bd6817a (plain)
1
2
3
4
5
6
7
8
9
10
#include "util.hpp"
#include "fixtures/server_environment.hpp"

GTEST_API_ int main(int argc, char *argv[]) {
    testing::AddGlobalTestEnvironment(new ServerEnvironment("test/headless/server.js"));
    testing::AddGlobalTestEnvironment(new ServerEnvironment("test/storage/server.js"));

    testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}