blob: 9638dba609653d8fe441037747cc46e04ff19801 (
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_flags(&argc, argv);
return RUN_ALL_TESTS();
}
|