blob: e97ba3f014ca2b2d3b07c3949643cced2e4160d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
#include "deno.h"
#include "testing/gtest/include/gtest/gtest.h"
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
deno_init();
deno_set_v8_flags(&argc, argv);
return RUN_ALL_TESTS();
}
|