#include <bits/stdc++.h>


#define gc getchar
#define pc putchar

using namespace std;

/*#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
#include <ext/pb_ds/assoc_container.hpp>

using namespace __gnu_pbds;
*/

/*
        two functions for policy based data structure. it is

                find_by_order() and order_of_key().

        The first returns an iterator to the k-th largest element (counting from zero),
        the second returns the number of items in a set that are strictly smaller than our item

*/

#define vi vector<int>
#define si set<int>
#define vs vector<string>
#define pii pair<int,int>
#define vpi vector<pii>
#define pri priority_queue<int>
#define rev_pri priority_queue<int,vector<int>,greater<int> >
#define mpi map<int,int>
#define i64 long long int
#define endl '\n'
#define pi acos(-1)
#define all(v) v.begin(),v.end()
#define pb push_back
#define mp make_pair
#define mod 1000000007
#define For(i,n) for(int i=0;i<n;i++)
#define Rep(i,x,y) for(int i=x;i<=y;i++)
#define eps 1e-8
#define ff first
#define ss second
#define mem(a,b) memset(a,b,sizeof(a))
#define min3(a,b,c) min(a,min(b,c))
#define max3(a,b,c) max(a,max(b,c))
#define READ freopen("input.txt", "r", stdin)
#define sz size()
#define dbg(x) printf("yo is %d!\n",x)
#define dbg2(x,y) printf("yo is %d! and %d!\n",x,y)
#define foreach(i,c) for(__typeof((c).begin()) i = (c).begin(); i != (c).end(); i++)
#define sqr(a) (a) * (a)
#define clr clear()
#define CASE(a) printf("Case %d:\n",a)
#define sf(n) scanf("%d", &n)
#define sff(a,b) scanf("%d %d", &a, &b)
#define sfff(a,b,c) scanf("%d %d %d", &a, &b, &c)

//int dx[] = {0,1,0,-1};
//int dy[] = {1,0,-1,0};
//int dx[] = { -1, -1,  0, 1, 1, 1,  0, -1 };
//int dy[] = {  0, -1, -1, -1,  0, 1, 1, 1 };
//int dxK[] = { -2, -2, -1, 1, 2, 2, 1, -1 };
//int dyK[] = { -1, 1, 2, 2, 1, -1, -2, -2 };

//functions

//i64 gcd(i64 a,i64 b){if(!b)return a;return gcd(b,a%b);}

//inline void fastRead(i64 *a){register char c=0;while(c<33)c=gc();*a=0;while(c>33){*a=*a*10+c-'0';c=gc();}}

//inline void fastWrite(int a){char snum[20];int i=0;do{snum[i++]=a%10+48;a=a/10;}while(a!=0);i=i-1;while(i>=0)pc(snum[i--]);pc('\n');}

//i64 bigmod(i64 num,i64 n){if(!n)return 1;i64 x=(bigmod(num,n/2)*bigmod(num,n/2))%mod;if(n%2)x=(x*num)%mod;return x;}

//i64 modinverse(i64 num){return bigmod(num,mod-2);}

//void combination(int pos,int last){if(pos==k+1){for(int i=1;i<=k;i++)cout << tem[i];cout << endl;return;}
//for(int i=last+1;i<=n-k+pos;i++){tem[pos] = num[i-1];combination(pos+1,i);}}
//i64 power(i64 value, i64 base){i64 result = 1;For(i,base)result *= value;return result;}
//int Set(int N,int pos){return N = (1<<pos);}
//int reset(int N,int pos){return N &= (~(1<<pos));}
//bool check(int N,int pos){return (bool)(N & (1<<pos));}

//typedef tree< int, null_type, less < int >, rb_tree_tag, tree_order_statistics_node_update > Set;

int vis[205];
vpi adj[205], tree[205];

int prim(int k)
{
    mem(vis,0);

    priority_queue<pair<int,pii>, vector<pair<int,pii> >, greater<pair<int,pii> > > pq;

    pq.push(mp(0,mp(k,-1)));

    int ret = 0;

    while(!pq.empty())
    {
        pair<int,pii> p = pq.top();
        pq.pop();

        int u = p.ss.ff;
        int pr = p.ss.ss;

        if(vis[u])
            continue;

        ret += p.ff;
        vis[u] = 1;
        if(pr!=-1)
        {
            tree[u].pb(mp(pr,p.ff));
            tree[pr].pb(mp(u,p.ff));
        }

        For(i,adj[u].sz)
        {
            int v = adj[u][i].ff;
            if(!vis[v])
                pq.push(mp(adj[u][i].ss,mp(v,u)));
        }
    }
    return ret;
}

int main()
{
    int t;
    sf(t);
    Rep(tc,1,t)
    {
        int n,w;
        sff(n,w);
        mem(adj,NULL);
        CASE(tc);
        while(w--)
        {
            int a,b,c;
            sfff(a,b,c);
            adj[a].pb(mp(b,c));
            adj[b].pb(mp(a,c));

            int flag = 1;
            int ans = prim(a);

            Rep(i,1,n)
            {
                if(!vis[i])
                    flag = 0;
                else
                    adj[i] = tree[i];
            }


            if(flag)
                printf("%d\n",ans);
            else
                printf("-1\n");
            //Rep(i,1,n)
                //dbg(adj[i].sz);
            mem(tree,NULL);
        }
    }

    return 0;
}
