summaryrefslogtreecommitdiff
path: root/libdeno/libdeno_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libdeno/libdeno_test.cc')
-rw-r--r--libdeno/libdeno_test.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libdeno/libdeno_test.cc b/libdeno/libdeno_test.cc
index 9627f4a8d..a992f5303 100644
--- a/libdeno/libdeno_test.cc
+++ b/libdeno/libdeno_test.cc
@@ -14,11 +14,6 @@ TEST(LibDenoTest, InitializesCorrectlyWithoutSnapshot) {
deno_delete(d);
}
-TEST(LibDenoTest, SnapshotterInitializesCorrectly) {
- Deno* d = deno_new(deno_config{1, empty, empty, nullptr});
- deno_delete(d);
-}
-
TEST(LibDenoTest, Snapshotter) {
Deno* d1 = deno_new(deno_config{1, empty, empty, nullptr});
EXPECT_TRUE(deno_execute(d1, nullptr, "a.js", "a = 1 + 2"));